-- MySQL dump 10.13  Distrib 5.7.23-23, for Linux (x86_64)
--
-- Host: localhost    Database: assarbbq_dental-db
-- ------------------------------------------------------
-- Server version	5.7.23-23

/*!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 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;

--
-- Table structure for table `wp_actionscheduler_actions`
--

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

--
-- Dumping data for table `wp_actionscheduler_actions`
--

LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (10,'action_scheduler/migration_hook','complete','2022-05-17 04:22:20','2022-05-17 04:22:20','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1652761340;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1652761340;}',1,1,'2022-05-17 04:22:44','2022-05-17 04:22:44',0,NULL),(11,'woocommerce_admin/stored_state_setup_for_products/async/run_remote_notifications','complete','0000-00-00 00:00:00','0000-00-00 00:00:00','[]','O:28:\"ActionScheduler_NullSchedule\":0:{}',0,1,'2022-05-17 09:15:16','2022-05-17 09:15:16',0,NULL),(12,'adjust_download_permissions','complete','2022-05-17 09:15:16','2022-05-17 09:15:16','[79]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1652778916;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1652778916;}',0,1,'2022-05-17 09:15:16','2022-05-17 09:15:16',0,NULL),(13,'adjust_download_permissions','complete','2022-05-17 09:15:16','2022-05-17 09:15:16','[126]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1652778916;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1652778916;}',0,1,'2022-05-17 09:15:16','2022-05-17 09:15:16',0,NULL),(14,'wc-admin_import_customers','complete','2022-05-18 04:00:33','2022-05-18 04:00:33','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1652846433;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1652846433;}',2,1,'2022-05-18 04:01:33','2022-05-18 04:01:33',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_claims`
--

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

--
-- Dumping data for table `wp_actionscheduler_claims`
--

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

--
-- Table structure for table `wp_actionscheduler_groups`
--

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

--
-- Dumping data for table `wp_actionscheduler_groups`
--

LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wc-admin-data');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_logs`
--

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

--
-- Dumping data for table `wp_actionscheduler_logs`
--

LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (1,10,'action created','2022-05-17 04:21:20','2022-05-17 04:21:20'),(2,10,'action started via WP Cron','2022-05-17 04:22:44','2022-05-17 04:22:44'),(3,10,'action complete via WP Cron','2022-05-17 04:22:44','2022-05-17 04:22:44'),(4,11,'action created','2022-05-17 09:15:13','2022-05-17 09:15:13'),(5,12,'action created','2022-05-17 09:15:15','2022-05-17 09:15:15'),(6,13,'action created','2022-05-17 09:15:15','2022-05-17 09:15:15'),(7,11,'action started via Async Request','2022-05-17 09:15:16','2022-05-17 09:15:16'),(8,11,'action complete via Async Request','2022-05-17 09:15:16','2022-05-17 09:15:16'),(9,12,'action started via Async Request','2022-05-17 09:15:16','2022-05-17 09:15:16'),(10,12,'action complete via Async Request','2022-05-17 09:15:16','2022-05-17 09:15:16'),(11,13,'action started via Async Request','2022-05-17 09:15:16','2022-05-17 09:15:16'),(12,13,'action complete via Async Request','2022-05-17 09:15:16','2022-05-17 09:15:16'),(13,14,'action created','2022-05-18 04:00:28','2022-05-18 04:00:28'),(14,14,'action started via WP Cron','2022-05-18 04:01:33','2022-05-18 04:01:33'),(15,14,'action complete via WP Cron','2022-05-18 04:01:33','2022-05-18 04:01:33');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- 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,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=31 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 */;
INSERT INTO `wp_commentmeta` VALUES (1,2,'rating','5'),(2,2,'verified','0'),(3,2,'_wxr_import_user','1'),(4,3,'rating','3'),(5,3,'verified','0'),(6,3,'_wxr_import_user','1'),(7,4,'rating','5'),(8,4,'verified','0'),(9,4,'_wxr_import_user','1'),(10,5,'rating','5'),(11,5,'verified','0'),(12,5,'_wxr_import_user','1'),(13,6,'rating','5'),(14,6,'verified','0'),(15,6,'_wxr_import_user','1'),(16,7,'rating','4'),(17,7,'verified','0'),(18,7,'_wxr_import_user','1'),(19,8,'rating','2'),(20,8,'verified','0'),(21,8,'_wxr_import_user','1'),(22,9,'rating','5'),(23,9,'verified','0'),(24,9,'_wxr_import_user','1'),(25,10,'rating','5'),(26,10,'verified','0'),(27,10,'_wxr_import_user','1'),(28,11,'rating','5'),(29,11,'verified','0'),(30,11,'_wxr_import_user','1');
/*!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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=12 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/','','2022-05-17 04:17:56','2022-05-17 04:17:56','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0),(2,79,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-09 08:26:56','2021-07-09 08:26:56','At the suggestion of a few people in a cooking thread at the-boneyard.com, I purchased this infrared thermometer. I had asked a question about the best pan to sauté mushrooms and onions, and was told the temperature which the butter/oil is added is far more important.',0,'1','','review',0,0),(3,79,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-09 08:27:26','2021-07-09 08:27:26','We purchased this product to test the temps of our wood stove. Always cared for, never dropped, never allowed to be near heat, it started to act strange this past spring at the end of the heating season. I figured it was a weak battery and took the battery out for the season, storing it in its original box.',0,'1','','review',0,0),(4,126,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-09 09:22:11','2021-07-09 09:22:11','This is a new transition for my 91 year old father...it became too difficult for him to walk with a walker when we go on trips and so I ordered this chair. He fits in it and it was ready to use right out of the box. I wouldn\\\'t even count hooking on the foot rests as assembly.',0,'1','','review',0,0),(5,126,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-09 09:22:28','2021-07-09 09:22:28','Lighter, more compact, and more easily maneuverable than a regular wheelchair. Folds well and goes in back of SUV so much easier than the full size version. Also, compared to the full size drive, the arm rests come forward further, allowing better leverage when the patient tries to stand up.',0,'1','','review',0,0),(6,134,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-09 09:52:08','2021-07-09 09:52:08','Second time buying this, has a great orange taste and highly recommend it',0,'1','','review',0,0),(7,134,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-09 09:52:28','2021-07-09 09:52:28','Easy to swallow and tasty.',0,'1','','review',0,0),(8,156,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-09 09:40:29','2021-07-09 09:40:29','The Listerine bottles arrived late and was never attempted to be delivered by the guaranteed date. Also, these bottles are not the large Liter bottles that are the same price, but rather half the size and is unsuitable for an office setting. The only positive is that the expiry date seems to be 2020, which is plenty of time to use the product.',0,'1','','review',0,0),(9,156,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-09 09:40:40','2021-07-09 09:40:40','Great product for getting that freshness in your breath. It is a bit strong in taste, however, is effective in killing my bad morning breath and the taste is great. I was surprised that the bottle was smaller than what I would normally get in the store, however it is a good value for the amount you get. Would highly recommend if you want something very strong and I sometimes use it to treat my gingivitis.',0,'1','','review',0,0),(10,189,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-10 01:11:25','2021-07-10 01:11:25','I was relieved to see that PURELL was finally available and in quantity that is required for my practice.\r\nPurell is a reputable brand, used in healthcare and in zero supply for non health care for months during the pandemic. Ours was in fact dwindling.\r\nGreat product, great company to deal with, quick service and will buy again.',0,'1','','review',0,0),(11,189,'admin','tungps0712@gmail.com','https://cli.21lab.co','58.186.57.9','2021-07-10 01:11:50','2021-07-10 01:11:50','This was the only place I was able to find Purell during this pandemic. Fast shippiing, and now Ii am stocked up again with my favorite hand santizer.',0,'1','','review',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,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_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_events`
--

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

--
-- Table structure for table `wp_ea_appointments`
--

DROP TABLE IF EXISTS `wp_ea_appointments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_appointments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `location` int(11) NOT NULL,
  `service` int(11) NOT NULL,
  `worker` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `phone` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `start` time DEFAULT NULL,
  `end` time DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_520_ci,
  `status` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `user` int(11) DEFAULT NULL,
  `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `price` decimal(10,2) DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `session` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `appointments_location` (`location`),
  KEY `appointments_service` (`service`),
  KEY `appointments_worker` (`worker`),
  CONSTRAINT `wp_ea_appointments_ibfk_1` FOREIGN KEY (`location`) REFERENCES `wp_ea_locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `wp_ea_appointments_ibfk_2` FOREIGN KEY (`service`) REFERENCES `wp_ea_services` (`id`) ON DELETE CASCADE,
  CONSTRAINT `wp_ea_appointments_ibfk_3` FOREIGN KEY (`worker`) REFERENCES `wp_ea_staff` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_appointments`
--

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

--
-- Table structure for table `wp_ea_connections`
--

DROP TABLE IF EXISTS `wp_ea_connections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_connections` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_id` int(11) DEFAULT NULL,
  `location` int(11) DEFAULT NULL,
  `service` int(11) DEFAULT NULL,
  `worker` int(11) DEFAULT NULL,
  `slot_count` int(11) DEFAULT '1',
  `day_of_week` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `time_from` time DEFAULT NULL,
  `time_to` time DEFAULT NULL,
  `day_from` date DEFAULT NULL,
  `day_to` date DEFAULT NULL,
  `is_working` smallint(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `location_to_connection` (`location`),
  KEY `service_to_location` (`service`),
  KEY `worker_to_connection` (`worker`),
  CONSTRAINT `wp_ea_connections_ibfk_1` FOREIGN KEY (`location`) REFERENCES `wp_ea_locations` (`id`) ON DELETE CASCADE,
  CONSTRAINT `wp_ea_connections_ibfk_2` FOREIGN KEY (`service`) REFERENCES `wp_ea_services` (`id`) ON DELETE CASCADE,
  CONSTRAINT `wp_ea_connections_ibfk_3` FOREIGN KEY (`worker`) REFERENCES `wp_ea_staff` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_connections`
--

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

--
-- Table structure for table `wp_ea_error_logs`
--

DROP TABLE IF EXISTS `wp_ea_error_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_error_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `error_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `errors` text COLLATE utf8mb4_unicode_520_ci,
  `errors_data` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_error_logs`
--

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

--
-- Table structure for table `wp_ea_fields`
--

DROP TABLE IF EXISTS `wp_ea_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `app_id` int(11) NOT NULL,
  `field_id` int(11) NOT NULL,
  `value` varchar(500) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_fields`
--

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

--
-- Table structure for table `wp_ea_locations`
--

DROP TABLE IF EXISTS `wp_ea_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_locations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `address` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `cord` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_locations`
--

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

--
-- Table structure for table `wp_ea_meta_fields`
--

DROP TABLE IF EXISTS `wp_ea_meta_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_meta_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `mixed` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `default_value` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `visible` tinyint(4) NOT NULL,
  `required` tinyint(4) NOT NULL,
  `validation` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `position` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_meta_fields`
--

LOCK TABLES `wp_ea_meta_fields` WRITE;
/*!40000 ALTER TABLE `wp_ea_meta_fields` DISABLE KEYS */;
INSERT INTO `wp_ea_meta_fields` VALUES (1,'EMAIL','email','EMail','','',1,1,'email',1),(2,'INPUT','name','Name','','',1,1,'minlength-3',2),(3,'INPUT','phone','Phone','','',1,1,'minlength-3',3),(4,'TEXTAREA','description','Description','','',1,0,NULL,4);
/*!40000 ALTER TABLE `wp_ea_meta_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_ea_options`
--

DROP TABLE IF EXISTS `wp_ea_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ea_key` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `ea_value` text COLLATE utf8mb4_unicode_520_ci,
  `type` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_options`
--

LOCK TABLES `wp_ea_options` WRITE;
/*!40000 ALTER TABLE `wp_ea_options` DISABLE KEYS */;
INSERT INTO `wp_ea_options` VALUES (1,'mail.pending','pending','default'),(2,'mail.reservation','reservation','default'),(3,'mail.canceled','canceled','default'),(4,'mail.confirmed','confirmed','default'),(5,'mail.admin','','default'),(6,'mail.action.two_step','0','default'),(7,'trans.service','Service','default'),(8,'trans.location','Location','default'),(9,'trans.worker','Worker','default'),(10,'trans.done_message','Done','default'),(11,'time_format','00-24','default'),(12,'trans.currency','$','default'),(13,'pending.email','','default'),(14,'price.hide','0','default'),(15,'price.hide.service','0','default'),(16,'datepicker','en-US','default'),(17,'send.user.email','0','default'),(18,'custom.css','','default'),(19,'form.label.above','0','default'),(20,'show.iagree','0','default'),(21,'cancel.scroll','calendar','default'),(22,'multiple.work','1','default'),(23,'compatibility.mode','0','default'),(24,'pending.subject.email','New Reservation #id#','default'),(25,'send.from.email','','default'),(26,'css.off','0','default'),(27,'submit.redirect','','default'),(28,'advance.redirect','[]','default'),(29,'advance_cancel.redirect','[]','default'),(30,'pending.subject.visitor.email','Reservation #id#','default'),(31,'block.time','0','default'),(32,'max.appointments','5','default'),(33,'pre.reservation','0','default'),(34,'default.status','pending','default'),(35,'send.worker.email','0','default'),(36,'currency.before','0','default'),(37,'nonce.off','0','default'),(38,'gdpr.on','0','default'),(39,'gdpr.label','By using this form you agree with the storage and handling of your data by this website.','default'),(40,'gdpr.link','','default'),(41,'gdpr.message','You need to accept the privacy checkbox','default'),(42,'gdpr.auto_remove','0','default'),(43,'sort.workers-by','id','default'),(44,'sort.services-by','id','default'),(45,'sort.locations-by','id','default'),(46,'order.workers-by','DESC','default'),(47,'order.services-by','DESC','default'),(48,'order.locations-by','DESC','default'),(49,'captcha.site-key','','default'),(50,'captcha3.site-key','','default'),(51,'captcha.secret-key','','default'),(52,'captcha3.secret-key','','default'),(53,'fullcalendar.public','0','default'),(54,'fullcalendar.event.show','0','default'),(55,'fullcalendar.event.template','','default'),(56,'shortcode.compress','1','default'),(57,'label.from_to','0','default'),(58,'user.access.services','','default'),(59,'user.access.workers','','default'),(60,'user.access.locations','','default'),(61,'user.access.connections','','default');
/*!40000 ALTER TABLE `wp_ea_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_ea_services`
--

DROP TABLE IF EXISTS `wp_ea_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `service_color` varchar(7) COLLATE utf8mb4_unicode_520_ci DEFAULT '#0693E3',
  `duration` int(11) NOT NULL,
  `slot_step` int(11) DEFAULT NULL,
  `block_before` int(11) DEFAULT '0',
  `block_after` int(11) DEFAULT '0',
  `daily_limit` int(11) DEFAULT '0',
  `price` decimal(10,2) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_services`
--

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

--
-- Table structure for table `wp_ea_staff`
--

DROP TABLE IF EXISTS `wp_ea_staff`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ea_staff` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_520_ci,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `phone` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ea_staff`
--

LOCK TABLES `wp_ea_staff` WRITE;
/*!40000 ALTER TABLE `wp_ea_staff` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ea_staff` 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=1648 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://demoweblinks.in/dental','yes'),(2,'home','https://demoweblinks.in/dental','yes'),(3,'blogname','Dental','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','brains@amaeka.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','0','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','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:202:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:36:\"mc4wp-form/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?mc4wp-form=$matches[1]&wc-api=$matches[3]\";s:42:\"mc4wp-form/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"mc4wp-form/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=28&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:12:{i:0;s:30:\"advanced-custom-fields/acf.php\";i:1;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:26:\"easy-appointments/main.php\";i:4;s:23:\"elementor/elementor.php\";i:5;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:6;s:59:\"medical-addon-for-elementor/medical-addon-for-elementor.php\";i:7;s:47:\"one-click-demo-import/one-click-demo-import.php\";i:8;s:23:\"revslider/revslider.php\";i:9;s:27:\"svg-support/svg-support.php\";i:10;s:41:\"widget-css-classes/widget-css-classes.php\";i:11;s:27:\"woocommerce/woocommerce.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','clilab','yes'),(41,'stylesheet','clilab-child','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','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','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:2:{i:1;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:5:{s:5:\"title\";s:23:\"Save Time. Feel Better.\";s:4:\"text\";s:399:\"<h2>Skip The Waiting Room!\r\nRegister Online Before You Arrive.</h2>\r\nSave Time and Energy by Easily Booking an Online Appointment Within Minutes.\r\n<div class=\"grBtn\"><a class=\"accent\" href=\"https://cli.21lab.co/book-an-appointment/\"><i class=\"iconlab iconlab-a-edit\"></i>Book an Appointment</a>\r\n<a class=\"outline\" href=\"#\"><i class=\"iconlab iconlab-phone-call\"></i>Call: 7 (465) 474-01-01</a></div>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:7:\"classes\";s:18:\"ctaBox aligncenter\";}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:26:\"easy-appointments/main.php\";a:2:{i:0;s:15:\"EasyAppointment\";i:1;s:9:\"uninstall\";}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','170','yes'),(82,'page_on_front','28','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','1945','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','1668313075','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','51917','yes'),(100,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:18:\"bcn_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'widget_block','a:4:{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 -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:13:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"primary\";a:6:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:8:\"search-1\";i:4;s:12:\"categories-1\";i:5;s:6:\"meta-1\";}s:15:\"off-canvas-left\";a:1:{i:0;s:10:\"nav_menu-1\";}s:23:\"woocommerce-content-top\";a:5:{i:0;s:33:\"woocommerce_layered_nav_filters-1\";i:1;s:32:\"woocommerce_product_categories-1\";i:2;s:25:\"woocommerce_layered_nav-1\";i:3;s:25:\"woocommerce_layered_nav-2\";i:4;s:26:\"woocommerce_price_filter-1\";}s:16:\"content-bottom-1\";a:1:{i:0;s:6:\"text-1\";}s:16:\"content-bottom-2\";a:0:{}s:16:\"content-bottom-3\";a:0:{}s:16:\"content-bottom-4\";a:0:{}s:8:\"footer-1\";a:1:{i:0;s:13:\"custom_html-1\";}s:8:\"footer-2\";a:1:{i:0;s:10:\"nav_menu-2\";}s:8:\"footer-3\";a:1:{i:0;s:19:\"mc4wp_form_widget-1\";}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(104,'cron','a:20:{i:1652954474;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1652955476;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652955665;a:1:{s:20:\"easyapp_hourly_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652955675;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1652955680;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652955686;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1652957998;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1652977076;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1653004800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653014760;a:1:{s:29:\"mc4wp_refresh_mailchimp_lists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653020276;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653020300;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653020301;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:1653020465;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:1653020475;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653020485;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653031275;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653452276;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:1654057335;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(105,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_meta','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_search','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:3:{i:1;a:2:{s:8:\"nav_menu\";s:2:\"51\";s:7:\"classes\";s:11:\"menu-style1\";}i:2;a:3:{s:5:\"title\";s:28:\"Quick Links and Informations\";s:8:\"nav_menu\";s:2:\"52\";s:7:\"classes\";s:11:\"menu-style2\";}s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:2:{i:1;a:3:{s:5:\"title\";s:18:\"Vijaya Dental Care\";s:7:\"content\";s:313:\"<ul>\r\n	<li>\r\n		<span><i class=\"iconlab iconlab-f-chat\"></i>Chat or Call 7 (465) 474-01-01</span>\r\n	</li>\r\n	<li>\r\n	<span><i class=\"iconlab iconlab-square-pin\"></i>Address1,Address2,Kochi</span>\r\n	</li>\r\n	<li>\r\n	<a href=\"#\"><span><i class=\"iconlab iconlab-arrow-right\"></i>Check on the map</span></a>\r\n	</li>\r\n</ul>\";s:7:\"classes\";s:11:\"miniContact\";}s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(121,'theme_mods_twentytwentytwo','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1652761172;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'),(124,'https_detection_errors','a:0:{}','yes'),(134,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:17:\"brains@amaeka.com\";s:7:\"version\";s:5:\"5.9.3\";s:9:\"timestamp\";i:1652761086;}','no'),(135,'_site_transient_timeout_browser_20974fba76ac68d3b08560343ae2118a','1653365900','no'),(136,'_site_transient_browser_20974fba76ac68d3b08560343ae2118a','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"101.0.4951.64\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(137,'_site_transient_timeout_php_check_0260183cef5829810c63d4ec9ff87fd1','1653365901','no'),(138,'_site_transient_php_check_0260183cef5829810c63d4ec9ff87fd1','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(142,'can_compress_scripts','1','no'),(155,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1652954401;s:15:\"version_checked\";s:5:\"5.9.3\";s:12:\"translations\";a:0:{}}','no'),(159,'finished_updating_comment_type','1','yes'),(164,'current_theme','clilab Child','yes'),(165,'theme_mods_clilab','a:66:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:19:\"header__nav__extras\";a:1:{i:0;s:6:\"search\";}s:21:\"global__layout__width\";a:2:{s:5:\"width\";s:6:\"1280px\";s:9:\"max-width\";s:3:\"95%\";}s:26:\"global__layout__background\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:26:\"global__sidebar__dimension\";a:2:{s:5:\"width\";s:5:\"300px\";s:6:\"margin\";s:5:\"100px\";}s:24:\"global__typography__body\";a:5:{s:6:\"family\";s:65:\"Lexend/100,300,regular,500,600,700,800/latin,latin-ext,vietnamese\";s:5:\"style\";s:3:\"300\";s:5:\"color\";s:7:\"#2a2a2a\";s:4:\"size\";s:4:\"15px\";s:10:\"lineHeight\";s:4:\"160%\";}s:26:\"global__typography__scheme\";a:10:{s:7:\"primary\";s:7:\"#03dd84\";s:6:\"accent\";s:7:\"#029967\";s:5:\"light\";s:7:\"#d4f7e8\";s:4:\"dark\";s:7:\"#2a2a2a\";s:4:\"grey\";s:22:\"rgba(2, 153, 103, 0.2)\";s:6:\"yellow\";s:7:\"#fed700\";s:6:\"orange\";s:7:\"#fe613f\";s:3:\"red\";s:7:\"#f0163d\";s:4:\"blue\";s:7:\"#02afec\";s:5:\"green\";s:7:\"#00bf54\";}s:14:\"header__topbar\";s:3:\"off\";s:30:\"blog__archive__sidebarPosition\";s:5:\"right\";s:27:\"header__titlebar__titleFont\";a:4:{s:6:\"family\";s:162:\"Fraunces/100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic/latin,latin-ext,vietnamese\";s:5:\"style\";s:3:\"600\";s:4:\"size\";s:0:\"\";s:10:\"lineHeight\";s:0:\"\";}s:14:\"header__sticky\";s:3:\"off\";s:14:\"header__extras\";a:1:{i:0;s:6:\"search\";}s:20:\"header__topbar__text\";s:12:\"Content here\";s:21:\"global__social__icons\";a:3:{i:0;a:3:{s:4:\"icon\";s:19:\"slab-logo-fb-simple\";s:5:\"title\";s:8:\"Facebook\";s:3:\"url\";s:1:\"#\";}i:1;a:3:{s:4:\"icon\";s:17:\"slab-logo-twitter\";s:5:\"title\";s:7:\"Twitter\";s:3:\"url\";s:1:\"#\";}i:2;a:3:{s:4:\"icon\";s:16:\"slab-logo-envato\";s:5:\"title\";s:6:\"Envato\";s:3:\"url\";s:1:\"#\";}}s:22:\"header__sticky__shadow\";s:2:\"on\";s:26:\"header__topbar__typography\";a:3:{s:4:\"size\";s:0:\"\";s:9:\"textStyle\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:19:\"global__misc__gotop\";s:3:\"off\";s:26:\"header__topbar__background\";a:10:{s:5:\"image\";a:2:{s:2:\"id\";i:-1;s:3:\"url\";b:0;}s:5:\"color\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"attachment\";s:6:\"scroll\";s:8:\"position\";s:8:\"top left\";s:1:\"x\";s:4:\"auto\";s:1:\"y\";s:4:\"auto\";s:4:\"size\";s:4:\"auto\";s:5:\"width\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";}s:26:\"global__typography__colors\";a:4:{s:1:\"a\";s:7:\"#029967\";s:7:\"a:hover\";s:7:\"#2a2a2a\";s:9:\"a:visited\";s:0:\"\";s:17:\"a:active, a:focus\";s:0:\"\";}s:18:\"header__logoMargin\";a:2:{s:10:\"margin-top\";s:0:\"\";s:12:\"margin-right\";s:0:\"\";}s:19:\"header__nav__margin\";a:1:{s:10:\"margin-top\";s:0:\"\";}s:20:\"header__nav__padding\";a:4:{s:11:\"padding-top\";s:0:\"\";s:13:\"padding-right\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:12:\"padding-left\";s:0:\"\";}s:20:\"sliding__menuDesktop\";s:3:\"off\";s:13:\"header__width\";s:2:\"on\";s:20:\"header__sticky__logo\";s:8:\"logoDark\";s:14:\"header__shadow\";s:3:\"off\";s:13:\"input__border\";a:6:{s:3:\"all\";a:3:{s:4:\"size\";s:3:\"1px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:22:\"rgba(255, 255, 255, 0)\";}s:3:\"top\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:5:\"right\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:6:\"bottom\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:4:\"left\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:8:\"simplify\";b:1;}s:19:\"input__borderRadius\";s:0:\"\";s:25:\"blog__archive__gridGutter\";s:2:\"55\";s:24:\"blog__archive__imagesize\";s:7:\"880x440\";s:22:\"blog__single__postMeta\";s:2:\"on\";s:22:\"blog__single__postTags\";s:2:\"on\";s:24:\"blog__single__postAuthor\";s:2:\"on\";s:21:\"sliding__sidebarLable\";s:4:\"More\";s:26:\"sliding__sidebarBackground\";a:10:{s:5:\"image\";a:2:{s:2:\"id\";i:-1;s:3:\"url\";b:0;}s:5:\"color\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"attachment\";s:6:\"scroll\";s:8:\"position\";s:8:\"top left\";s:1:\"x\";s:4:\"auto\";s:1:\"y\";s:4:\"auto\";s:4:\"size\";s:5:\"cover\";s:5:\"width\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";}s:21:\"header__sticky__style\";s:6:\"style1\";s:21:\"header__sticky__width\";s:2:\"on\";s:19:\"header__transparent\";s:3:\"off\";s:17:\"input__typography\";a:1:{s:4:\"size\";s:0:\"\";}s:17:\"input__background\";s:0:\"\";s:13:\"input__height\";s:0:\"\";s:18:\"button__typography\";a:1:{s:4:\"size\";s:0:\"\";}s:14:\"button__height\";s:0:\"\";s:14:\"button__border\";a:6:{s:3:\"all\";a:3:{s:4:\"size\";s:3:\"1px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:22:\"rgba(255, 255, 255, 0)\";}s:3:\"top\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:5:\"right\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:6:\"bottom\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:4:\"left\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:8:\"simplify\";b:1;}s:13:\"header__style\";s:6:\"style1\";s:26:\"footer__copyright__content\";s:114:\"Copyright © 2021 21Lab. Designed and Developed by <a href=\"#\">21Lab.co</a> only on <a href=\"#\">Envato Market.</a>\";s:17:\"shop__gridColumns\";s:1:\"5\";s:21:\"shop__sidebarPosition\";s:4:\"none\";s:24:\"product__sidebarPosition\";s:4:\"none\";s:30:\"global__typography__blockquote\";a:2:{s:6:\"family\";s:162:\"Fraunces/100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic/latin,latin-ext,vietnamese\";s:5:\"style\";s:3:\"500\";}s:18:\"sliding__menuStyle\";s:5:\"slide\";s:23:\"sliding__menuBackground\";a:4:{s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";}s:28:\"header__titlebar__background\";a:4:{s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";}s:27:\"footer__widgets__background\";a:4:{s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";}s:29:\"footer__copyright__background\";a:4:{s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";}s:14:\"shop__paginate\";s:2:\"15\";s:28:\"header__titlebar__scrolldown\";s:3:\"off\";s:36:\"header__titlebar__backgroundFeatured\";a:1:{i:0;s:4:\"page\";}s:20:\"blog__archive__style\";s:4:\"list\";s:28:\"blog__archive__excerptLength\";s:3:\"345\";s:17:\"logoDefault__logo\";a:1:{s:3:\"url\";s:75:\"https://demoweblinks.in/dental/wp-content/themes/clilab/assets/img/logo.png\";}s:23:\"logoDefault__logoRetina\";a:1:{s:3:\"url\";s:78:\"https://demoweblinks.in/dental/wp-content/themes/clilab/assets/img/logo@2x.png\";}s:14:\"logoDark__logo\";a:1:{s:3:\"url\";s:82:\"https://demoweblinks.in/dental/wp-content/themes/clilab/assets/img/logo_sticky.png\";}s:20:\"logoDark__logoRetina\";a:1:{s:3:\"url\";s:85:\"https://demoweblinks.in/dental/wp-content/themes/clilab/assets/img/logo_sticky@2x.png\";}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1652761195;s:4:\"data\";a:12:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"primary\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:15:\"off-canvas-left\";a:0:{}s:23:\"woocommerce-content-top\";a:0:{}s:16:\"content-bottom-1\";a:0:{}s:16:\"content-bottom-2\";a:0:{}s:16:\"content-bottom-3\";a:0:{}s:16:\"content-bottom-4\";a:0:{}s:8:\"footer-1\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(166,'theme_switched','','yes'),(168,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652954402;s:7:\"checked\";a:5:{s:12:\"clilab-child\";s:0:\"\";s:6:\"clilab\";s:5:\"1.0.3\";s:12:\"twentytwenty\";s:3:\"1.9\";s:15:\"twentytwentyone\";s:3:\"1.5\";s:15:\"twentytwentytwo\";s:3:\"1.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip\";s:8:\"requires\";s:3:\"5.3\";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.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(170,'theme_mods_clilab-child','a:81:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:3:\"top\";i:55;s:7:\"primary\";i:53;s:7:\"sliding\";i:54;}s:19:\"header__nav__extras\";a:1:{i:0;s:6:\"search\";}s:21:\"global__layout__width\";a:2:{s:5:\"width\";s:6:\"1280px\";s:9:\"max-width\";s:3:\"90%\";}s:26:\"global__layout__background\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:26:\"global__sidebar__dimension\";a:2:{s:5:\"width\";s:5:\"300px\";s:6:\"margin\";s:5:\"100px\";}s:24:\"global__typography__body\";a:5:{s:6:\"family\";s:65:\"Lexend/100,300,regular,500,600,700,800/latin,latin-ext,vietnamese\";s:5:\"style\";s:3:\"300\";s:5:\"color\";s:7:\"#000000\";s:4:\"size\";s:4:\"15px\";s:10:\"lineHeight\";s:4:\"160%\";}s:26:\"global__typography__scheme\";a:10:{s:7:\"primary\";s:7:\"#163f7a\";s:6:\"accent\";s:7:\"#37c5a6\";s:5:\"light\";s:7:\"#63ffdd\";s:4:\"dark\";s:7:\"#2a2a2a\";s:4:\"grey\";s:22:\"rgba(2, 153, 103, 0.2)\";s:6:\"yellow\";s:7:\"#fed700\";s:6:\"orange\";s:7:\"#fe613f\";s:3:\"red\";s:7:\"#f0163d\";s:4:\"blue\";s:7:\"#02afec\";s:5:\"green\";s:7:\"#00bf54\";}s:14:\"header__topbar\";s:2:\"on\";s:30:\"blog__archive__sidebarPosition\";s:4:\"none\";s:27:\"header__titlebar__titleFont\";a:4:{s:6:\"family\";s:162:\"Fraunces/100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic/latin,latin-ext,vietnamese\";s:5:\"style\";s:3:\"600\";s:4:\"size\";s:0:\"\";s:10:\"lineHeight\";s:0:\"\";}s:14:\"header__sticky\";s:2:\"on\";s:14:\"header__extras\";a:0:{}s:20:\"header__topbar__text\";s:34:\"Hello and Welcome! Smile Everyday.\";s:21:\"global__social__icons\";a:3:{i:0;a:3:{s:4:\"icon\";s:19:\"slab-logo-fb-simple\";s:5:\"title\";s:8:\"Facebook\";s:3:\"url\";s:1:\"#\";}i:1;a:3:{s:4:\"icon\";s:17:\"slab-logo-twitter\";s:5:\"title\";s:7:\"Twitter\";s:3:\"url\";s:1:\"#\";}i:2;a:3:{s:4:\"icon\";s:16:\"slab-logo-envato\";s:5:\"title\";s:6:\"Envato\";s:3:\"url\";s:1:\"#\";}}s:22:\"header__sticky__shadow\";s:2:\"on\";s:26:\"header__topbar__typography\";a:3:{s:4:\"size\";s:0:\"\";s:9:\"textStyle\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:19:\"global__misc__gotop\";s:2:\"on\";s:26:\"header__topbar__background\";a:10:{s:5:\"image\";a:2:{s:2:\"id\";i:-1;s:3:\"url\";b:0;}s:5:\"color\";s:0:\"\";s:6:\"repeat\";s:6:\"repeat\";s:10:\"attachment\";s:6:\"scroll\";s:8:\"position\";s:8:\"top left\";s:1:\"x\";s:4:\"auto\";s:1:\"y\";s:4:\"auto\";s:4:\"size\";s:4:\"auto\";s:5:\"width\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";}s:26:\"global__typography__colors\";a:4:{s:1:\"a\";s:7:\"#333030\";s:7:\"a:hover\";s:7:\"#2a2a2a\";s:9:\"a:visited\";s:0:\"\";s:17:\"a:active, a:focus\";s:0:\"\";}s:18:\"header__logoMargin\";a:2:{s:10:\"margin-top\";s:0:\"\";s:12:\"margin-right\";s:0:\"\";}s:19:\"header__nav__margin\";a:1:{s:10:\"margin-top\";s:0:\"\";}s:20:\"header__nav__padding\";a:4:{s:11:\"padding-top\";s:0:\"\";s:13:\"padding-right\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:12:\"padding-left\";s:0:\"\";}s:20:\"sliding__menuDesktop\";s:3:\"off\";s:13:\"header__width\";s:2:\"on\";s:20:\"header__sticky__logo\";s:8:\"logoDark\";s:14:\"header__shadow\";s:3:\"off\";s:13:\"input__border\";a:6:{s:3:\"all\";a:3:{s:4:\"size\";s:3:\"1px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:22:\"rgba(255, 255, 255, 0)\";}s:3:\"top\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:5:\"right\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:6:\"bottom\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:4:\"left\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:8:\"simplify\";b:1;}s:19:\"input__borderRadius\";s:0:\"\";s:25:\"blog__archive__gridGutter\";s:2:\"55\";s:24:\"blog__archive__imagesize\";s:7:\"880x440\";s:22:\"blog__single__postMeta\";s:2:\"on\";s:22:\"blog__single__postTags\";s:2:\"on\";s:24:\"blog__single__postAuthor\";s:2:\"on\";s:21:\"sliding__sidebarLable\";s:8:\"Discover\";s:26:\"sliding__sidebarBackground\";a:10:{s:5:\"image\";a:2:{s:2:\"id\";i:1831;s:3:\"url\";s:62:\"https://cli.21lab.co/wp-content/uploads/2021/08/bg-sidebar.jpg\";}s:5:\"color\";s:0:\"\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"attachment\";s:6:\"scroll\";s:8:\"position\";s:12:\"bottom right\";s:1:\"x\";s:4:\"auto\";s:1:\"y\";s:4:\"auto\";s:4:\"size\";s:6:\"custom\";s:5:\"width\";s:4:\"auto\";s:6:\"height\";s:3:\"75%\";}s:21:\"header__sticky__style\";s:6:\"style2\";s:21:\"header__sticky__width\";s:2:\"on\";s:19:\"header__transparent\";s:2:\"on\";s:17:\"input__typography\";a:1:{s:4:\"size\";s:0:\"\";}s:17:\"input__background\";s:0:\"\";s:13:\"input__height\";s:0:\"\";s:18:\"button__typography\";a:1:{s:4:\"size\";s:0:\"\";}s:14:\"button__height\";s:0:\"\";s:14:\"button__border\";a:6:{s:3:\"all\";a:3:{s:4:\"size\";s:3:\"1px\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";s:22:\"rgba(255, 255, 255, 0)\";}s:3:\"top\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:5:\"right\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:6:\"bottom\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:4:\"left\";a:3:{s:4:\"size\";s:0:\"\";s:5:\"style\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:8:\"simplify\";b:1;}s:13:\"header__style\";s:6:\"style4\";s:26:\"footer__copyright__content\";s:126:\"Copyright © 2022. Designed and Developed by <a href=\"#\">Amaeka Technologies.</a> only on <a href=\"#\">Vijaya Dental clinic</a>\";s:17:\"shop__gridColumns\";s:1:\"5\";s:21:\"shop__sidebarPosition\";s:4:\"none\";s:24:\"product__sidebarPosition\";s:4:\"none\";s:30:\"global__typography__blockquote\";a:2:{s:6:\"family\";s:162:\"Fraunces/100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic/latin,latin-ext,vietnamese\";s:5:\"style\";s:3:\"500\";}s:18:\"sliding__menuStyle\";s:5:\"slide\";s:23:\"sliding__menuBackground\";a:4:{s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";}s:28:\"header__titlebar__background\";a:10:{s:5:\"image\";a:2:{s:2:\"id\";i:-1;s:3:\"url\";b:0;}s:5:\"color\";s:4:\"#fff\";s:6:\"repeat\";s:9:\"no-repeat\";s:10:\"attachment\";s:6:\"scroll\";s:8:\"position\";s:8:\"top left\";s:1:\"x\";s:4:\"auto\";s:1:\"y\";s:4:\"auto\";s:4:\"size\";s:4:\"auto\";s:5:\"width\";s:4:\"auto\";s:6:\"height\";s:4:\"auto\";}s:27:\"footer__widgets__background\";a:4:{s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";}s:29:\"footer__copyright__background\";a:4:{s:6:\"repeat\";s:9:\"no-repeat\";s:8:\"position\";s:8:\"top left\";s:10:\"attachment\";s:6:\"scroll\";s:4:\"size\";s:4:\"auto\";}s:14:\"shop__paginate\";s:2:\"15\";s:28:\"header__titlebar__scrolldown\";s:3:\"off\";s:36:\"header__titlebar__backgroundFeatured\";a:1:{i:0;s:4:\"page\";}s:20:\"blog__archive__style\";s:4:\"grid\";s:28:\"blog__archive__excerptLength\";s:3:\"145\";s:17:\"logoDefault__logo\";a:2:{s:2:\"id\";i:2082;s:3:\"url\";s:84:\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/vdental-e1652789849269.png\";}s:23:\"logoDefault__logoRetina\";a:2:{s:2:\"id\";i:2082;s:3:\"url\";s:84:\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/vdental-e1652789946855.png\";}s:14:\"logoDark__logo\";a:1:{s:3:\"url\";s:72:\"https://cli.21lab.co/wp-content/themes/clilab/assets/img/logo_sticky.png\";}s:20:\"logoDark__logoRetina\";a:1:{s:3:\"url\";s:75:\"https://cli.21lab.co/wp-content/themes/clilab/assets/img/logo_sticky@2x.png\";}s:18:\"custom_css_post_id\";i:89;s:25:\"global__social__positions\";a:3:{i:0;s:3:\"top\";i:1;s:6:\"sticky\";i:2;s:6:\"footer\";}s:30:\"contentBottom__widgets__layout\";a:2:{s:7:\"columns\";i:1;s:6:\"layout\";a:4:{i:1;a:1:{i:0;i:12;}i:2;a:2:{i:0;i:6;i:1;i:6;}i:3;a:3:{i:0;i:4;i:1;i:4;i:2;i:4;}i:4;a:4:{i:0;i:3;i:1;i:3;i:2;i:3;i:3;i:3;}}}s:23:\"footer__widgets__layout\";a:2:{s:7:\"columns\";i:3;s:6:\"layout\";a:4:{i:1;a:1:{i:0;i:12;}i:2;a:2:{i:0;i:6;i:1;i:6;}i:3;a:3:{i:0;i:4;i:1;i:4;i:2;i:4;}i:4;a:4:{i:0;i:3;i:1;i:3;i:2;i:3;i:3;i:3;}}}s:18:\"header__info__text\";s:76:\"<span>Need Help?</span> <strong><a href=\"#\">Every day, 24 hours</a></strong>\";s:20:\"blog__related__title\";s:22:\"Maybe you want to read\";s:19:\"blog__related__type\";s:6:\"random\";s:21:\"logoDefault__logoSize\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}s:27:\"footer__widgets__typography\";a:1:{s:5:\"color\";s:7:\"#201e1e\";}s:23:\"footer__widgets__colors\";a:2:{s:4:\"link\";s:7:\"#2c2b2b\";s:9:\"linkHover\";s:7:\"#403737\";}s:22:\"footer__widgets__title\";a:1:{s:5:\"color\";s:7:\"#302626\";}s:29:\"footer__copyright__typography\";a:1:{s:5:\"color\";s:7:\"#342c2c\";}s:25:\"footer__copyright__colors\";a:2:{s:4:\"link\";s:7:\"#272525\";s:9:\"linkHover\";s:7:\"#332c2c\";}s:34:\"contentBottom__widgets__typography\";a:1:{s:5:\"color\";s:7:\"#163f7a\";}s:30:\"contentBottom__widgets__colors\";a:2:{s:4:\"link\";s:7:\"#2d2424\";s:9:\"linkHover\";s:7:\"#342d2d\";}s:29:\"contentBottom__widgets__title\";a:1:{s:5:\"color\";s:7:\"#281e1e\";}}','yes'),(173,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.5.6\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1652761265;s:7:\"version\";s:5:\"5.5.6\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(174,'easy_app_db_version','3.10.1','yes'),(175,'elementor_active_kit','8','yes'),(178,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:16:\"themepunch.tools\";i:3;s:22:\"themepunch-ext-a.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-b.tools\";}','yes'),(179,'revslider_server_refresh','1652761266','yes'),(180,'revslider-update-check-short','1652954405','yes'),(181,'revslider-connection','1','yes'),(182,'revslider-update-hash','28fe36ecb3d2bbe61cab74500a40e39e','yes'),(183,'revslider-latest-version','6.5.22','yes'),(184,'revslider-stable-version','4.2.0','yes'),(185,'revslider-notices','a:3:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:546:\"<div style=\"display: block; background: #fff;text-align: center; height: 250px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 960px; height: 250px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"https://sliderrevolution.com/wp-content/uploads/2021/07/adminpremiumvid4.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6511-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:537:\"<div style=\"display: block; background: #fff;text-align: center; height: 300px;\"><a href=\"https://account.sliderrevolution.com/portal/pricing/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getpremium2\" target=\"_blank\" rel=\"noopener\"><video style=\"object-fit: cover; background-size: cover; opacity: 1; width: 920px; height: 300px; display: inline-block;\" muted=\"\" loop=\"\" autoplay=\"\" preload=\"auto\"><source src=\"//updates.themepunch-ext-b.tools//banners/videobanner_premium2.mp4\" type=\"video/mp4\"></video></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:402:\"<div style=\"display: block; background:#fff;text-align: center; height: 250px;\"><a href=\"https://www.sliderrevolution.com/wordpress-hosting/?utm_source=admin&utm_medium=banner&utm_campaign=srusers&utm_content=getwphosting\" target=\"_blank\" rel=\"noopener\"><img style=\"width: 960px; height: 250px; display: inline-block;\"  src=\"//updates.themepunch-ext-b.tools//banners/rs60/wphostingadmin.jpg\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6518-02\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:1;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),(186,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(187,'rs-addons-counter','33','yes'),(188,'revslider-addons','O:8:\"stdClass\":33:{s:28:\"revslider-particlewave-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"380\";s:9:\"releaseid\";s:2:\"29\";s:4:\"slug\";s:28:\"revslider-particlewave-addon\";s:12:\"version_from\";s:6:\"6.5.15\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Particle Wave\";s:6:\"line_1\";s:36:\"Create 3D particle and polygon grids\";s:6:\"line_2\";s:40:\"with lots of style and animation options\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:1:\"9\";s:11:\"last_update\";s:10:\"2022-02-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_particlewave.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PW\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"424\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"3.3.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2022-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"405\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:30:\"revslider-transitionpack-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"369\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:30:\"revslider-transitionpack-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Advanced Transitions\";s:6:\"line_1\";s:43:\"Add never-before-seen slide transitions to \";s:6:\"line_2\";s:42:\"Slider Revolution with the power of WEBGL.\";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"30\";s:11:\"last_update\";s:10:\"2021-12-23\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_transition.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"AT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"404\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"3.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2022-05-17\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"418\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2021-12-15\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"410\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"409\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"420\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"3.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2022-04-12\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"411\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2021-08-09\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"483\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:6:\"6.5.17\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_charts.png\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2022-02-23\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_charts.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"417\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"422\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"421\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2021-07-17\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"416\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"423\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"3.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2022-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"396\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2021-12-23\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"407\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2021-10-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"397\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2021-07-08\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"419\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:81:\"//updates.themepunch-ext-b.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2022-05-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"414\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2021-11-03\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2020-02-19\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"415\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"399\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2021-12-15\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2022-01-31\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"388\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"402\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2021-05-28\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"406\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}','yes'),(189,'revslider-library-check','1652761267','yes'),(190,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(191,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(192,'revslider-templates-check','1652761268','yes'),(193,'revslider-templates-hash','d9bc9832f32c1a65dbf68b62cbf88d28','yes'),(194,'rs-templates-new','','no');
INSERT INTO `wp_options` VALUES (195,'rs-templates','{\"hash\":\"d9bc9832f32c1a65dbf68b62cbf88d28\",\"slider\":{\"0\":{\"id\":\"1\",\"title\":\"Classic Carousel\",\"alias\":\"classic-carousel\",\"zip\":\"classic-carousel.zip\",\"uid\":\"146a01dd380c0cdee85c4456ee68cd84\",\"img\":\"classic-carousel\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/carousel-slider-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">Our classic, full-width carousel example. Drag, swipe or click to navigate!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content carousel. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-22 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"1\":{\"id\":\"2\",\"title\":\"Classic Slider\",\"alias\":\"classicslider\",\"zip\":\"classicslider.zip\",\"uid\":\"a0d6a9248c9066b404ba0f1cdadc5cf2\",\"img\":\"classicslider\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-slideshow-gallery\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\" <span class=\\\"ttm_content\\\">A classic slideshow example with timer, bullets and arrow navigation.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"2\":{\"id\":\"3\",\"title\":\"Content Tabs\",\"alias\":\"contenttabs\",\"zip\":\"contenttabs.zip\",\"uid\":\"e02e91604b690123a3d07a65582c4fd0\",\"img\":\"contenttabs\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-content-tabs-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1024\",\"height\":\"600\",\"description\":\" <span class=\\\"ttm_content\\\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"3\":{\"id\":\"4\",\"title\":\"Facebook Feed\",\"alias\":\"facebook-feed\",\"zip\":\"facebook-feed.zip\",\"uid\":\"5506431d5b1babcb25dcf52c508d42e3\",\"img\":\"facebook-feed\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-facebook-feed\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"800\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"Facebook Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"4\":{\"id\":\"5\",\"title\":\"Fashion\",\"alias\":\"fashion\",\"zip\":\"fashion.zip\",\"uid\":\"4f4b914d6db35e19101ff003c4e7ea3a\",\"img\":\"fashion\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-one-page-slider-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"  <span class=\\\"ttm_content\\\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"5\":{\"id\":\"6\",\"title\":\"Flickr Gallery\",\"alias\":\"flickr-gallery\",\"zip\":\"flickr-gallery.zip\",\"uid\":\"ad85cfac7acfa678e6a1b8febfee51ed\",\"img\":\"flickr-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-flickr-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"800\",\"height\":\"640\",\"description\":\" <span class=\\\"ttm_content\\\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"Flickr Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"6\":{\"id\":\"7\",\"title\":\"Gym\",\"alias\":\"gym\",\"zip\":\"gym.zip\",\"uid\":\"e4d81f13f96fb9bc905f4ad89615032b\",\"img\":\"gym\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/one-page-wordpress-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Instructions for <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-burger-menu\\/\\\" target=\\\"_blank\\\">changing the menu<\\/a>.<\\/span><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"7\":{\"id\":\"8\",\"title\":\"Highlight Carousel\",\"alias\":\"highlight-carousel\",\"zip\":\"highlight-carousel.zip\",\"uid\":\"ada52163f723a942f782351fa0396b3d\",\"img\":\"highlight-carousel\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-swipe-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"800\",\"height\":\"720\",\"description\":\"  <span class=\\\"ttm_content\\\">A swipe-controlled carousel with an additional tab-based navigation.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\\r\\n\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"8\":{\"id\":\"9\",\"title\":\"Highlight Showcase\",\"alias\":\"highlight-showcase\",\"zip\":\"highlight-showcase.zip\",\"uid\":\"2bfe0bd410fb48fec9d942eab1e21530\",\"img\":\"highlight-showcase\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-parallax-slideshow\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1230\",\"height\":\"720\",\"description\":\"<span class=\\\"ttm_content\\\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"9\":{\"id\":\"10\",\"title\":\"Image Hero\",\"alias\":\"image-hero\",\"zip\":\"imagehero.zip\",\"uid\":\"7db18781d44f2adc28c962440894aac1\",\"img\":\"imagehero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-hero-image\\/\",\"version\":\"1.0.2\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A commonly used full-width image hero block with texts.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"10\":{\"id\":\"11\",\"title\":\"Instagram Gallery\",\"alias\":\"insta-gallery\",\"zip\":\"insta-gallery.zip\",\"uid\":\"711732b0d42ec2b57818a2b9b1d86cba\",\"img\":\"insta-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-instagram-gallery\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"640\",\"height\":\"640\",\"description\":\"<span class=\\\"ttm_content\\\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"Instagram Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"11\":{\"id\":\"12\",\"title\":\"Levano Restaurant Bar\",\"alias\":\"levanorestaurantbar\",\"zip\":\"levanorestaurantbar.zip\",\"uid\":\"4178f837db67d1b2eb6cb5840bbd0b42\",\"img\":\"levanorestaurantbar\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-front-page-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Instructions for <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-burger-menu\\/\\\" target=\\\"_blank\\\">changing the menu<\\/a>.<\\/span><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"12\":{\"id\":\"13\",\"title\":\"Main Feature Slider\",\"alias\":\"mainfeature\",\"zip\":\"mainfeature.zip\",\"uid\":\"1e002a3230ab00095bedc6f60393ee7f\",\"img\":\"mainfeature\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1230\",\"height\":\"750\",\"description\":\" <span class=\\\"ttm_content\\\">A slightly stripped down version of the main preview slider.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"13\":{\"id\":\"14\",\"title\":\"Media Gallery Two\",\"alias\":\"media-gallery-two\",\"zip\":\"media-gallery-two.zip\",\"uid\":\"d002f1b1b55805f9322c264c5504ba5a\",\"img\":\"media-gallery-two\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-media-gallery-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.2.22\",\"width\":\"1230\",\"height\":\"692\",\"description\":\"<span class=\\\"ttm_content\\\">A media gallery example with Vimeo, HTML5 and Youtube videos.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change media and titles.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"14\":{\"id\":\"15\",\"title\":\"Media Carousel Autoplay\",\"alias\":\"media-carousel-autoplay\",\"zip\":\"media-carousel-autoplay.zip\",\"uid\":\"393d7875b1cc9d933378b35e4f645d76\",\"img\":\"media-carousel-autoplay\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-media-gallery\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"720\",\"height\":\"405\",\"description\":\"<span class=\\\"ttm_content\\\">A media carousel with \\\"autoplay\\\" activated. Swipe or click tabs to navigate the slider.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change media and caption texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"15\":{\"id\":\"16\",\"title\":\"News Background Video\",\"alias\":\"news-background-video\",\"zip\":\"news-bg-video.zip\",\"uid\":\"a0efe44ac3af0f958b3f84c816a08272\",\"img\":\"news-bg-video\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-content-blocks\\/\",\"version\":\"1.0.2\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"<span class=\\\"ttm_content\\\">A hero block with HTML5 background video that plays when entering the screen.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background video and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"16\":{\"id\":\"17\",\"title\":\"News Gallery\",\"alias\":\"news-gallery\",\"zip\":\"news-gallery.zip\",\"uid\":\"3a069c3b286dbb9ee435563f747e3300\",\"img\":\"news-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-news-rotator\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"<span class=\\\"ttm_content\\\">A news gallery slideshow with tab navigation. Great for any blog!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"17\":{\"id\":\"18\",\"title\":\"News Gallery Post Based\",\"alias\":\"news-gallery-post-based\",\"zip\":\"news-gallery-post-based.zip\",\"uid\":\"32fe05b1039c29ab9420bfd15aec5488\",\"img\":\"news-gallery-post-based\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-post-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"<span class=\\\"ttm_content\\\"> This slider is automatically populated by WordPress posts.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"Post-Based Slider\\\"<\\/a>. Make sure to select the post type you want to display in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"postbased\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"18\":{\"id\":\"19\",\"title\":\"News Hero\",\"alias\":\"news-hero\",\"zip\":\"news-hero.zip\",\"uid\":\"96a0385538a17c8c81ed8175740f70ea\",\"img\":\"news-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-content-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"<span class=\\\"ttm_content\\\">A image hero block with ken burns effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"19\":{\"id\":\"20\",\"title\":\"News Video\",\"alias\":\"news-video\",\"zip\":\"news-video.zip\",\"uid\":\"f901e9e16e0363248156c2209eb584e9\",\"img\":\"news-video\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-content-blocks\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"<span class=\\\"ttm_content\\\">A Vimeo background video hero block with play \\/ pause buttons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the video and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"20\":{\"id\":\"21\",\"title\":\"Newsletter Hero\",\"alias\":\"newsletter-hero\",\"zip\":\"newsletter-hero.zip\",\"uid\":\"6290a9864d8c4c6311784586ed1cc5fe\",\"img\":\"newsletter-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-newsletter-signup\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">This hero block uses a custom styled Mailchimp newsletter signup field.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/how-to-setup-mailchimp-for-the-newsletter-hero-template\\/\\\" target=\\\"_blank\\\">Mailchimp code<\\/a>.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"21\":{\"id\":\"22\",\"title\":\"Not Generic\",\"alias\":\"notgeneric\",\"zip\":\"notgeneric.zip\",\"uid\":\"9d87ba95e02210a9f82387add2ceadf9\",\"img\":\"notgeneric\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-fullscreen-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider with a layer based navigation and sleek content elements.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Instructions for <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-burger-menu\\/\\\" target=\\\"_blank\\\">changing the menu<\\/a>.<\\/span><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"22\":{\"id\":\"23\",\"title\":\"Photography\",\"alias\":\"photography\",\"zip\":\"photography.zip\",\"uid\":\"1b2072547afb75e49f33b016751ed360\",\"img\":\"photography\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photography-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Instructions for <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-burger-menu\\/\\\" target=\\\"_blank\\\">changing the menu<\\/a>.<\\/span><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"23\":{\"id\":\"24\",\"title\":\"Photography Carousel\",\"alias\":\"photography-carousel\",\"zip\":\"photography-carousel.zip\",\"uid\":\"9a84b859ba23dc49ba8784e3a86545fa\",\"img\":\"photography-carousel\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1024\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Instructions for <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-burger-menu\\/\\\" target=\\\"_blank\\\">changing the menu<\\/a>.<\\/span><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"24\":{\"id\":\"25\",\"title\":\"Search Form Hero\",\"alias\":\"search-form-hero\",\"zip\":\"search-form-hero.zip\",\"uid\":\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\",\"img\":\"search-form-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-search-form-hero\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">This hero block uses a custom styled input field to show search results on a WordPress site.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"25\":{\"id\":\"26\",\"title\":\"Showcase Carousel\",\"alias\":\"showcasecarousel\",\"zip\":\"showcasecarousel.zip\",\"uid\":\"c5ca218398331bd2c064efc2f62eae56\",\"img\":\"showcasecarousel\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-cover-flow-gallery\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"600\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A fancy carousel that rotates, fades and scales slider items.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\\r\\n\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content carousel. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"26\":{\"id\":\"27\",\"title\":\"Sports Hero\",\"alias\":\"sports-hero\",\"zip\":\"sportshero.zip\",\"uid\":\"8de7a145f32a362d618d2595ffa2f724\",\"img\":\"sportshero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-image-hero\\/\",\"version\":\"1.0.2\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"720\",\"description\":\"<span class=\\\"ttm_content\\\">An sports themed image hero block with buttons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"27\":{\"id\":\"28\",\"title\":\"Twitter Feed\",\"alias\":\"twitter-feed\",\"zip\":\"twitter-feed.zip\",\"uid\":\"efbfc2af5da5258e7b7bed8598e483cc\",\"img\":\"twitter-feed\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-twitter-feed\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"800\",\"height\":\"640\",\"description\":\"<span class=\\\"ttm_content\\\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"Twitter Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"28\":{\"id\":\"29\",\"title\":\"Vimeo Gallery\",\"alias\":\"vimeo-gallery\",\"zip\":\"vimeo-gallery.zip\",\"uid\":\"fa824ce1ff3942ec268fc9eda60df539\",\"img\":\"vimeo-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-vimeo-gallery\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"1230\",\"height\":\"692\",\"description\":\"<span class=\\\"ttm_content\\\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"Vimeo Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"29\":{\"id\":\"30\",\"title\":\"Vimeo Hero\",\"alias\":\"vimeohero\",\"zip\":\"vimeohero.zip\",\"uid\":\"c575575f96173d88589cddcb06120b77\",\"img\":\"vimeohero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-hero-vimeo\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A commonly used Vimeo video background hero block.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background video and texts.<br\\/><br\\/><\\/span>\\r\\nScreencast for <a href=\\\"https:\\/\\/www.youtube.com\\/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\\\" target=\\\"_blank\\\">mobile video<\\/a> considerations.<\\/a>\\r\\n<br\\/><br\\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"30\":{\"id\":\"31\",\"title\":\"Web Product Dark\",\"alias\":\"web-product-dark\",\"zip\":\"web-product-dark.zip\",\"uid\":\"39b872cf0608e63c3a503e58374dc30a\",\"img\":\"web-product-dark\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-frontpage-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1400\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Instructions for <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-burger-menu\\/\\\" target=\\\"_blank\\\">changing the menu<\\/a>.<\\/span><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"31\":{\"id\":\"32\",\"title\":\"Web Product Dark Hero\",\"alias\":\"web-product-dark-hero\",\"zip\":\"web-product-dark-hero.zip\",\"uid\":\"b6784e8925221f36677217979d26e6f0\",\"img\":\"web-product-dark-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-header-image\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1400\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">A modern hero block with three common devices. The screens of each device can be changed easily!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"32\":{\"id\":\"33\",\"title\":\"Web Product Light Hero\",\"alias\":\"web-product-light-hero\",\"zip\":\"web-product-light-hero.zip\",\"uid\":\"428e65d6aaa6ef775429989d50516492\",\"img\":\"web-product-light-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/hero-image-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1400\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">A modern hero block with three common devices. The screens of each device can be changed easily!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"33\":{\"id\":\"34\",\"title\":\"Web Product Light\",\"alias\":\"webproductlight\",\"zip\":\"webproductlight.zip\",\"uid\":\"fa23dab5bf1139c6393828647a9de4e0\",\"img\":\"webproductlight\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-cover-page\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1400\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Instructions for <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-burger-menu\\/\\\" target=\\\"_blank\\\">changing the menu<\\/a>.<\\/span><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"34\":{\"id\":\"35\",\"title\":\"Youtube Gallery\",\"alias\":\"youtube-gallery\",\"zip\":\"youtube-gallery.zip\",\"uid\":\"ee9e4928ac74f5f0c0b697ce708f5aa7\",\"img\":\"youtube-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-youtube-gallery\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"YouTube Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"35\":{\"id\":\"36\",\"title\":\"Youtube Hero\",\"alias\":\"youtubehero\",\"zip\":\"youtubehero.zip\",\"uid\":\"e0b2c12a45841bdf21cb96305f2c85bf\",\"img\":\"youtubehero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-youtube-header\\/\",\"version\":\"1.0.3\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A YouTube video background hero block.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background video and texts.<br\\/><br\\/><\\/span>\\r\\nScreencast for <a href=\\\"https:\\/\\/www.youtube.com\\/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\\\" target=\\\"_blank\\\">mobile video<\\/a> considerations.<\\/a>\\r\\n<br\\/><br\\/>\\r\\nLearn how to <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/enable-sound-for-the-youtube-hero-template\\/\\\" target=\\\"_blank\\\">enable sound for the background video<\\/a><br \\/><br \\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"36\":{\"id\":\"37\",\"title\":\"Scroll Effect\",\"alias\":\"scroll-effect\",\"zip\":\"scroll-effect.zip\",\"uid\":\"417f59e9db87aa7e47c8509eb88d4af6\",\"img\":\"scrolleffect\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/big-bold-fullscreen-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider with a unique scroll effect and big, bold text.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>For further configuration options please view the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">\\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"37\":{\"id\":\"38\",\"title\":\"Content Zoom\",\"alias\":\"content-zoom\",\"zip\":\"content-zoom.zip\",\"uid\":\"42ef8cdb70d42ec6ff6fa3b69a027b5f\",\"img\":\"contentzoom\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/content-zoom-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A very unique full-width slider that uses <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"38\":{\"id\":\"39\",\"title\":\"Food Carousel\",\"alias\":\"food-carousel\",\"zip\":\"food-carousel.zip\",\"uid\":\"a7bf54527b6658a0a308c70c729779fe\",\"img\":\"foodcarousel\\/slider_cover.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/food-carousel-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A fancy carousel with detail content on each slide. <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> are used to show and hide layers.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"39\":{\"id\":\"40\",\"title\":\"Rotating Words\",\"alias\":\"rotating-words\",\"zip\":\"rotating-words.zip\",\"uid\":\"70190463d9376f278c8197b7b2ef6c1b\",\"img\":\"rotatingwords\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/rotating-words-hero\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen hero block with unique animated text and blur effects.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" hero slider. Edit the slide to change the background media and texts.<br\\/>For further configuration options please view the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">\\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"40\":{\"id\":\"41\",\"title\":\"Travel Static Captions\",\"alias\":\"travel-static-captions\",\"zip\":\"travel-static-captions.zip\",\"uid\":\"bbe7d61c7c741ebc7aa1ce1082b0cb71\",\"img\":\"travel-static-captions\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/travel-slideshow\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">A slideshow example with static captions layers above a rotating image background.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"41\":{\"id\":\"42\",\"title\":\"Concept\",\"alias\":\"concept\",\"zip\":\"concept.zip\",\"uid\":\"47cb06083e87503762f6746725117a3c\",\"img\":\"concept\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/fullscreen-wordpress-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider that uses <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"42\":{\"id\":\"43\",\"title\":\"True Fullscreen\",\"alias\":\"fullscreen-button\",\"zip\":\"fullscreen-button.zip\",\"uid\":\"618a43bdf89333b555531f6d6ecde359\",\"img\":\"fullscreen-button\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-sidebar-slideshow\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A slider with a full-screen button that uses <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change the background images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"43\":{\"id\":\"44\",\"title\":\"Creative Freedom\",\"alias\":\"creativefreedom\",\"zip\":\"creativefreedom.zip\",\"uid\":\"8902bf6c93126c2c6323626b9e872621\",\"img\":\"creativefreedom\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-touch-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images, videos and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"44\":{\"id\":\"45\",\"title\":\"3D Parallax Scene\",\"alias\":\"parallaxscene\",\"zip\":\"parallaxscene.zip\",\"uid\":\"51566f1ce649708e97a0f5dfaf05ea19\",\"img\":\"parallaxscene\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-3d-parallax\\/\",\"version\":\"1.0.2\",\"required\":\"5.1\",\"width\":\"1240\",\"height\":\"700\",\"description\":\"<span class=\\\"ttm_content\\\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a>.<\\/span>\\r\\n<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"45\":{\"id\":\"46\",\"title\":\"Wow Factor\",\"alias\":\"slidingoverlays\",\"zip\":\"slidingoverlays.zip\",\"uid\":\"18002d17e8bc7ca61b0951f5305a759e\",\"img\":\"slidingoverlays\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/responsive-wordpress-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"1240\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">A 3D-parallax effect full-screen slider.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\nScreencast for <a href=\\\"https:\\/\\/www.youtube.com\\/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\\\" target=\\\"_blank\\\">mobile video<\\/a> considerations.<\\/a>\\r\\n<br\\/><br\\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"46\":{\"id\":\"47\",\"title\":\"3D Web Product\",\"alias\":\"web-product-light-hero-3d\",\"zip\":\"web-product-light-hero-3d.zip\",\"uid\":\"efd345c5da805414093e46066cefd751\",\"img\":\"web-product-light-hero-3d\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-3d-scene\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"1400\",\"height\":\"668\",\"description\":\"<span class=\\\"ttm_content\\\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"47\":{\"id\":\"48\",\"title\":\"WooCommerce Big\",\"alias\":\"woobig\",\"zip\":\"woobig.zip\",\"uid\":\"bfb09a39656c7c80e86b468fc5b3403c\",\"img\":\"woobig\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/woocommerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1200\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"WooCommerce Slider\\\"<\\/a>. Make sure to select the products you want to show in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"48\":{\"id\":\"49\",\"title\":\"WooCommerce Small\",\"alias\":\"woocommercesmall\",\"zip\":\"woocommercesmall.zip\",\"uid\":\"b17c2adcc5c4c4b68a7ac6fee32fa030\",\"img\":\"woocommercesmall\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/woocommerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"400\",\"height\":\"266\",\"description\":\" <span class=\\\"ttm_content\\\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"WooCommerce Slider\\\"<\\/a>. Make sure to select the products you want to show in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"49\":{\"id\":\"50\",\"title\":\"Restaurant Header\",\"alias\":\"finedining\",\"zip\":\"finedining.zip\",\"uid\":\"03481a9e258501fbe3888b48830ea845\",\"img\":\"finedining\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/restaurant-hero-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen hero block slider that shows different background layers on button hover using <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a>.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\nScreencast for <a href=\\\"https:\\/\\/www.youtube.com\\/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\\\" target=\\\"_blank\\\">mobile video<\\/a> considerations.<\\/a>\\r\\n<br\\/><br\\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"50\":{\"id\":\"51\",\"title\":\"Agency Website Header\",\"alias\":\"agency-intro\",\"zip\":\"agency-intro.zip\",\"uid\":\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\",\"img\":\"agency-intro\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/agency-website-hero-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\" <span class=\\\"ttm_content\\\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> are used to achieve this effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"51\":{\"id\":\"52\",\"title\":\"Team Slider\",\"alias\":\"ourteam\",\"zip\":\"ourteam.zip\",\"uid\":\"d8eb1fec07a79202d1118bb17f70c233\",\"img\":\"ourteam\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/thumbnail-hover-slider-revolution-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.4\",\"width\":\"1400\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> to achieve this effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\nLearn how to <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-thumbnails-for-our-team-template\\/\\\" target=\\\"_blank\\\">modify the thumbnails<\\/a><br\\/><br\\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"52\":{\"id\":\"53\",\"title\":\"Team Carousel\",\"alias\":\"our-team-carousel\",\"zip\":\"our-team-carousel.zip\",\"uid\":\"37656d5dcab1f265c025cb2a3d669809\",\"img\":\"ourteamcarousel\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/thumbnail-hover-carousel-slider-revolution-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.4\",\"width\":\"1000\",\"height\":\"800\",\"description\":\" <span class=\\\"ttm_content\\\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> to achieve this effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content carousel. Edit the slides to change images and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\nLearn how to <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/modify-thumbnails-for-our-team-template\\/\\\" target=\\\"_blank\\\">modify the thumbnails<\\/a><br\\/><br\\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"53\":{\"id\":\"54\",\"title\":\"4K Youtube Slider\",\"alias\":\"betteryoutube\",\"zip\":\"betteryoutube.zip\",\"uid\":\"d7c5fef9f257037d7a148038aa2a1857\",\"img\":\"betteryoutube\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin\\/\",\"version\":\"1.0.1\",\"required\":\"5.1.4\",\"width\":\"1200\",\"height\":\"675\",\"description\":\" <span class=\\\"ttm_content\\\">A full-screen youtube gallery with 4K videos as an example. <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> are used to breathe life into navigation elements.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change videos and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/><br\\/><\\/span>\\r\\nScreencast for <a href=\\\"https:\\/\\/www.youtube.com\\/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\\\" target=\\\"_blank\\\">mobile video<\\/a> considerations.<\\/a>\\r\\n<br\\/><br\\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"54\":{\"id\":\"55\",\"title\":\"Agency Website Header\",\"alias\":\"agencywebsiteheader\",\"zip\":\"agencywebsiteheader.zip\",\"uid\":\"c11d272c87277a7a38d9e7fd13e27947\",\"img\":\"agencywebsiteheader\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/fullscreen-hero-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\" <span class=\\\"ttm_content\\\">A very unique full-screen slider that uses <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"55\":{\"id\":\"56\",\"title\":\"Coming Soon\",\"alias\":\"comingsoon\",\"zip\":\"comingsoon.zip\",\"uid\":\"0f89edf995512e6d6e864a2ee7221829\",\"img\":\"comingsoon\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/coming-soon-wordpress-under-construction-site\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider that can be used as a \\\"Coming Soon\\\" page. <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a> are used to achieve various interaction possibilities.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>For further configuration options please view the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">\\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<br\\/><br\\/><\\/span>\\r\\nInstructions for <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/change-date-for-coming-soon-template\\/\\\" target=\\\"_blank\\\">how to change the date.<\\/a><br \\/><br \\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"56\":{\"id\":\"57\",\"title\":\"Christmas Snow Scene\",\"alias\":\"snowscene\",\"zip\":\"snowscene.zip\",\"uid\":\"a747bf0837caff86c62419a746690209\",\"img\":\"snowscene\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/christmas-snow-scene\\/\",\"version\":\"1.0.5\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A slider with multiple christmas themed slides and a neat snow fall effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>For further configuration options please view the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">\\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"57\":{\"id\":\"58\",\"title\":\"Rock Band Music\",\"alias\":\"rockband\",\"zip\":\"rockband.zip\",\"uid\":\"5f557a5fad2fd6ca982a6ae6e9619637\",\"img\":\"rockband\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/rock-band-music-theme-slider-revolution-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\" <span class=\\\"ttm_content\\\">A rock band themed hero block slider with an embedded SoundCloud element.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background video and texts.<br\\/><br\\/><\\/span>\\r\\nScreencast for <a href=\\\"https:\\/\\/www.youtube.com\\/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\\\" target=\\\"_blank\\\">mobile video<\\/a> considerations.<\\/a>\\r\\n<br\\/><br\\/>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"58\":{\"id\":\"59\",\"title\":\"Sleek Landing Page\",\"alias\":\"sleeklandingpage\",\"zip\":\"sleeklandingpage.zip\",\"uid\":\"07f7f2608936a8ae226213b7d99eee3f\",\"img\":\"sleeklandingpage\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/landing-page-free-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-22 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"59\":{\"id\":\"60\",\"title\":\"App Landing Page\",\"alias\":\"applandingpage\",\"zip\":\"applandingpage.zip\",\"uid\":\"38eb600893c1484ab8fd2a3dce3678d7\",\"img\":\"applandingpage\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/app-landing-page-free-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a>.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"60\":{\"id\":\"61\",\"title\":\"Desk Scene\",\"alias\":\"deskscene\",\"zip\":\"deskscene.zip\",\"uid\":\"172a1a89a3e3b333cb4dbeb238f534c5\",\"img\":\"deskscene\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/hero-desk-scene\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A beautiful desk scene with a cool reveal effect when scrolling down.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"61\":{\"id\":\"62\",\"title\":\"Clean News Slider\",\"alias\":\"cleannewsslider\",\"zip\":\"cleannewsslider.zip\",\"uid\":\"82c3f521fe31b80984be0f19e1a9899e\",\"img\":\"cleannewsslider\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-news-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A slideshow example with clean content and thumbnail navigation.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\\r\\n\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"62\":{\"id\":\"63\",\"title\":\"Image Gallery\",\"alias\":\"imagegallery\",\"zip\":\"imagegallery.zip\",\"uid\":\"cef1d75357df2cb53b990c74a214813e\",\"img\":\"imagegallery\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1000\",\"height\":\"667\",\"description\":\"<span class=\\\"ttm_content\\\">A photo gallery suitable to display your images using <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"63\":{\"id\":\"64\",\"title\":\"Standard WP Gallery\",\"alias\":\"standard-wp-gallery\",\"zip\":\"standard-wp-gallery.zip\",\"uid\":\"632035b8a27652d8081dbdfa343dc93d\",\"img\":\"standard-wp-gallery\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1000\",\"height\":\"667\",\"description\":\"<span class=\\\"ttm_content\\\">A photo gallery that uses the \\\"Standard WP Gallery\\\" add-on to display images.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Please follow the setup guide on the \\\"Standard WP Gallery\\\" add-on page.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-gallery-addon\\\\\\/revslider-gallery-addon.php\\\",\\\"name\\\":\\\"WP Gallery AddOn\\\",\\\"url\\\":\\\"http:\\\\\\/\\\\\\/revolution.themepunch.com\\\\\\/wordpress-photo-gallery-plugin\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"64\":{\"id\":\"65\",\"title\":\"Clean News Post Based\",\"alias\":\"clean-news-post-based\",\"zip\":\"clean-news-post-based.zip\",\"uid\":\"f4cf5bbe51afa5a361754bb081cbabf2\",\"img\":\"clean-news-post-based\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-news-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1200\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\"> This slider is automatically populated by WordPress posts.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The content source is set to <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/module-content\\/#flickr\\\" target=\\\"_blank\\\">\\\"Post-Based Slider\\\"<\\/a>. Make sure to select the post type you want to display in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"65\":{\"id\":\"66\",\"title\":\"Interactive Whiteboard\",\"alias\":\"interactivewhiteboard\",\"zip\":\"interactivewhiteboard.zip\",\"uid\":\"058b4af535d6c6c7bcec5225845e3eb4\",\"img\":\"interactivewhiteboard\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\\/\",\"version\":\"1.0.5\",\"required\":\"5.2.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This is the example slider from the Whiteboard add-on preview.<br\\/><a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a> are used to achieve certain effects.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This slider template requires the <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/whiteboard-addon\\/\\\" target=\\\"_blank\\\">Whiteboard add-on<\\/a> to be installed. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-whiteboard-addon\\\\\\/revslider-whiteboard-addon.php\\\",\\\"name\\\":\\\"Whiteboard AddOn\\\",\\\"url\\\":\\\"http:\\\\\\/\\\\\\/revolution.themepunch.com\\\\\\/interactive-whiteboard-animation-free-addon\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"66\":{\"id\":\"68\",\"title\":\"Innovation Slider\",\"alias\":\"innovation\",\"zip\":\"innovation.zip\",\"uid\":\"d3440b69126d9c186fddc713b18b0002\",\"img\":\"innovation\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/best-wordpress-slider-plugin-2016\\/\",\"version\":\"1.0.5\",\"required\":\"5.2.3.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider with an elegant fade-out parallax effect. <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a> are used for links on layers.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images, videos and texts.<br\\/>For further configuration options please view the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">\\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-03-29 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"67\":{\"id\":\"69\",\"title\":\"Dark Content Block - Menu\",\"alias\":\"dark-fullsite-block-menu\",\"zip\":\"packs\\/dark-fullsite-block-menu.zip\",\"uid\":\"bf4bd226719d3c3d3146592976e31ca1\",\"img\":\"dark-fullsite-block-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"68\":{\"id\":\"70\",\"title\":\"Dark Content Block - Hero\",\"alias\":\"dark-fullsite-block-1\",\"zip\":\"packs\\/dark-fullsite-block-1.zip\",\"uid\":\"d8859245fe600288ca932dc29aca751f\",\"img\":\"dark-fullsite-block-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"69\":{\"id\":\"71\",\"title\":\"Dark Content Block - About\",\"alias\":\"dark-fullsite-block-2-about\",\"zip\":\"packs\\/dark-fullsite-block-2-about.zip\",\"uid\":\"298401901521a197a8294c1b4f73df3e\",\"img\":\"dark-fullsite-block-2-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"70\":{\"id\":\"72\",\"title\":\"Dark Content Block - Services\",\"alias\":\"dark-fullsite-block-3-services\",\"zip\":\"packs\\/dark-fullsite-block-3-services.zip\",\"uid\":\"8da3ed605472ed6a26c745fb52f85f82\",\"img\":\"dark-fullsite-block-3-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"71\":{\"id\":\"73\",\"title\":\"Dark Content Block - Products\",\"alias\":\"dark-fullsite-block-4-products\",\"zip\":\"packs\\/dark-fullsite-block-4-products.zip\",\"uid\":\"99e4f40399d20261a6131043d0e50b0c\",\"img\":\"dark-fullsite-block-4-products\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\\r\\n\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"72\":{\"id\":\"74\",\"title\":\"Dark Content Block - Testimonials\",\"alias\":\"dark-fullsite-block-5-testimonials\",\"zip\":\"packs\\/dark-fullsite-block-5-testimonials.zip\",\"uid\":\"2f9121e0eedd51afe85e233d0743acab\",\"img\":\"dark-fullsite-block-5-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"73\":{\"id\":\"75\",\"title\":\"Dark Content Block - Callout\",\"alias\":\"dark-fullsite-block-6-callout\",\"zip\":\"packs\\/dark-fullsite-block-6-callout.zip\",\"uid\":\"55fbecb113ff21f050be7adc08637329\",\"img\":\"dark-fullsite-block-6-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"74\":{\"id\":\"76\",\"title\":\"Dark Content Block - Footer\",\"alias\":\"dark-fullsite-block-7-footer\",\"zip\":\"packs\\/dark-fullsite-block-7-footer.zip\",\"uid\":\"2ff517f5c7c54e3e0c2dd733cfd3400e\",\"img\":\"dark-fullsite-block-7-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"75\":{\"id\":\"77\",\"title\":\"Light Content Block - Menu\",\"alias\":\"fullsite-block-menu\",\"zip\":\"packs\\/fullsite-block-menu.zip\",\"uid\":\"8010971f34387d5f94a1f4e577ef382a\",\"img\":\"fullsite-block-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"76\":{\"id\":\"78\",\"title\":\"Light Content Block - Hero\",\"alias\":\"fullsite-block1\",\"zip\":\"packs\\/fullsite-block1.zip\",\"uid\":\"45bf7179843e01ce112e8ec754b0455c\",\"img\":\"fullsite-block1\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"77\":{\"id\":\"79\",\"title\":\"Light Content Block - About\",\"alias\":\"fullsite-block-2-about\",\"zip\":\"packs\\/fullsite-block-2-about.zip\",\"uid\":\"8402b460638a746d36433cb161440b7d\",\"img\":\"fullsite-block-2-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"78\":{\"id\":\"80\",\"title\":\"Light Content Block - Services\",\"alias\":\"fullsite-block-3-services\",\"zip\":\"packs\\/fullsite-block-3-services.zip\",\"uid\":\"7b8cea27f4d6ae17c5e1eae12457bd06\",\"img\":\"fullsite-block-3-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"79\":{\"id\":\"81\",\"title\":\"Light Content Block - Products\",\"alias\":\"fullsite-block-4-products\",\"zip\":\"packs\\/fullsite-block-4-products.zip\",\"uid\":\"d148935362d7122636cda0635eae4be7\",\"img\":\"fullsite-block-4-products\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"80\":{\"id\":\"82\",\"title\":\"Light Content Block - Testimonials\",\"alias\":\"fullsite-block-5-testimonials\",\"zip\":\"packs\\/fullsite-block-5-testimonials.zip\",\"uid\":\"06255bfd421e40f71fa8197b839dbf03\",\"img\":\"fullsite-block-5-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"81\":{\"id\":\"83\",\"title\":\"Light Content Block - Callout\",\"alias\":\"fullsite-block-6-callout\",\"zip\":\"packs\\/fullsite-block-6-callout.zip\",\"uid\":\"8a88c3447676b613ec5db2fe5d63315c\",\"img\":\"fullsite-block-6-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"82\":{\"id\":\"84\",\"title\":\"Light Content Block - Footer\",\"alias\":\"fullsite-block-7-footer\",\"zip\":\"packs\\/fullsite-block-7-footer.zip\",\"uid\":\"34300b4407a2093eb2e1e08868fa8319\",\"img\":\"fullsite-block-7-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"83\":{\"id\":\"85\",\"title\":\"Tech Journal\",\"alias\":\"techjournal\",\"zip\":\"techjournal.zip\",\"uid\":\"7f92d70d1c108378f915b18c2ceb71d6\",\"img\":\"techjournal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.1\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">A full-width slider with navigation direction-based transitions.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"84\":{\"id\":\"86\",\"title\":\"Car Dealership\",\"alias\":\"cardealership\",\"zip\":\"cardealership.zip\",\"uid\":\"bb010838855a8ae4d1dd68e139bf169e\",\"img\":\"cardealership\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/car-dealership-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.1\",\"width\":\"1240\",\"height\":\"650\",\"description\":\"<span class=\\\"ttm_content\\\">A full-width slider with navigation direction-based transitions.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"85\":{\"id\":\"87\",\"title\":\"FullScreen Menu Slider\",\"alias\":\"fullscreenmenu\",\"zip\":\"fullscreenmenu.zip\",\"uid\":\"6de81d74c4bf193e2e274d43038adc85\",\"img\":\"fullscreenmenu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-fullscreen-menu\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider that contains a menu with slide blur effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"86\":{\"id\":\"88\",\"title\":\"Creative Frontpage\",\"alias\":\"creativefrontpage\",\"zip\":\"creativefrontpage.zip\",\"uid\":\"0636cb368af3bcaa2f68eb0ebefe6439\",\"img\":\"creativefrontpage\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/best-wordpress-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider with hidden slides that are triggered via  <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\" target=\\\"_blank\\\">\\\"Layer Actions\\\"<\\/a>.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"87\":{\"id\":\"89\",\"title\":\"Website Builder Menu\",\"alias\":\"websitebuilder-menu\",\"zip\":\"packs\\/websitebuilder-menu.zip\",\"uid\":\"d9e6d9c961f123a3a4847b51fc3ba3a2\",\"img\":\"websitebuilder-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"60\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"88\":{\"id\":\"90\",\"title\":\"Website Builder Hero\",\"alias\":\"websitebuilder-hero\",\"zip\":\"packs\\/websitebuilder-hero.zip\",\"uid\":\"6cb2df9a41ad2e7865bb9bbea7e39cb5\",\"img\":\"websitebuilder-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1230\",\"height\":\"700\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"89\":{\"id\":\"91\",\"title\":\"Website Builder Clients\",\"alias\":\"websitebuilder-clients\",\"zip\":\"packs\\/websitebuilder-clients.zip\",\"uid\":\"050e59c43c9a693510d01f29532088cf\",\"img\":\"websitebuilder-clients\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"120\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"90\":{\"id\":\"92\",\"title\":\"Website Builder Services\",\"alias\":\"websitebuilder-services\",\"zip\":\"packs\\/websitebuilder-services.zip\",\"uid\":\"48d56d67615efce619ae973ab4358c07\",\"img\":\"websitebuilder-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"558\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"91\":{\"id\":\"93\",\"title\":\"Website Builder Discover\",\"alias\":\"websitebuilder-discover\",\"zip\":\"packs\\/websitebuilder-discover.zip\",\"uid\":\"425a08a7be338daea3df02a07ff5c316\",\"img\":\"websitebuilder-discover\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"955\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"92\":{\"id\":\"94\",\"title\":\"Website Builder Slider\",\"alias\":\"websitebuilder-slider\",\"zip\":\"packs\\/websitebuilder-slider.zip\",\"uid\":\"9d670b7335016accb590dc8d52bfb6f0\",\"img\":\"websitebuilder-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"93\":{\"id\":\"95\",\"title\":\"Website Builder CallToAction\",\"alias\":\"websitebuilder-calltoaction\",\"zip\":\"packs\\/websitebuilder-calltoaction.zip\",\"uid\":\"45851baf9e61f55ed9f5fa9d0beff77e\",\"img\":\"websitebuilder-calltoaction\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"960\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"94\":{\"id\":\"96\",\"title\":\"Website Builder Footer\",\"alias\":\"websitebuilder-footer\",\"zip\":\"packs\\/websitebuilder-footer.zip\",\"uid\":\"2732bbe66ef28219d6cc53ce8cc78863\",\"img\":\"websitebuilder-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"95\":{\"id\":\"97\",\"title\":\"Focus Parallax Effect\",\"alias\":\"focusparallax\",\"zip\":\"focusparallax.zip\",\"uid\":\"13bd15fb3ddf8b9841cb55b89389cc73\",\"img\":\"focusparallax\\/slide1.jpg\",\"preview\":\" https:\\/\\/revolution.themepunch.com\\/parallax-effect-wordpress-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider with mouse controlled parallax effects. <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a> are used for links on layers.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/>Some content is in <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">\\\"Static \\/ Global Layers\\\"<\\/a><br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"96\":{\"id\":\"98\",\"title\":\"Duotone Slider\",\"alias\":\"duotone\",\"zip\":\"duotone.zip\",\"uid\":\"494862ceb6cb7c6658ad7cd36848cccd\",\"img\":\"duotone\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-header-image-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.4\",\"width\":\"1200\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider with unique parallax scroll effect. <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a> are used for links on layers.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"97\":{\"id\":\"99\",\"title\":\"Minimal Menu\",\"alias\":\"r_menu\",\"zip\":\"packs\\/r_menu.zip\",\"uid\":\"30d6a6895db1a5f29b1679061551c9f0\",\"img\":\"r_menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"110\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">\\r\\nIn the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.<br\\/>\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-attributes\\/\\\" target=\\\"_blank\\\">Layers Attributes<\\/a> \\\".tp-colorchange\\\".<br\\/><br\\/>\\r\\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"98\":{\"id\":\"100\",\"title\":\"Minimal Hero\",\"alias\":\"rhero\",\"zip\":\"packs\\/r_hero.zip\",\"uid\":\"b8b46186956f6e66ad0c08e4532bbbde\",\"img\":\"r_hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"700\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">\\r\\nIn the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.<br\\/>\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-attributes\\/\\\" target=\\\"_blank\\\">Layers Attributes<\\/a> \\\".tp-colorchange\\\".<br\\/><br\\/>\\r\\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"99\":{\"id\":\"101\",\"title\":\"Minimal About\",\"alias\":\"r_about\",\"zip\":\"packs\\/r_about.zip\",\"uid\":\"343010c4b4c03f92888c3e9e95bc2bb1\",\"img\":\"r_about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">\\r\\nIn the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.<br\\/>\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-attributes\\/\\\" target=\\\"_blank\\\">Layers Attributes<\\/a> \\\".tp-colorchange\\\".<br\\/><br\\/>\\r\\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"100\":{\"id\":\"102\",\"title\":\"Minimal Products\",\"alias\":\"r_products\",\"zip\":\"packs\\/r_products.zip\",\"uid\":\"dda93e85c6a4456d132040147f087f39\",\"img\":\"r_products\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"1100\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">\\r\\nIn the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.<br\\/>\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-attributes\\/\\\" target=\\\"_blank\\\">Layers Attributes<\\/a> \\\".tp-colorchange\\\".<br\\/><br\\/>\\r\\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"101\":{\"id\":\"103\",\"title\":\"Minimal Info\",\"alias\":\"r_info\",\"zip\":\"packs\\/r_info.zip\",\"uid\":\"d6e368e8fd4862174af6c980389ae530\",\"img\":\"r_info\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">\\r\\nIn the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.<br\\/>\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-attributes\\/\\\" target=\\\"_blank\\\">Layers Attributes<\\/a> \\\".tp-colorchange\\\".<br\\/><br\\/>\\r\\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"102\":{\"id\":\"104\",\"title\":\"Inspiration Header\",\"alias\":\"inspirationheader\",\"zip\":\"inspirationheader.zip\",\"uid\":\"69f04b2be0b618fa7e184af83b86b7e7\",\"img\":\"inspirationheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This full-screen hero slider features sequentially animated texts and cool parallax elements.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"103\":{\"id\":\"105\",\"title\":\"Magazine Slider\",\"alias\":\"magazineposts\",\"zip\":\"magazineposts.zip\",\"uid\":\"c562f3457e4edbd030959f7c5e6e0f7c\",\"img\":\"magazineposts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-magazine-slider\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.6\",\"width\":\"1400\",\"height\":\"1000\",\"description\":\"<span class=\\\"ttm_content\\\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a> are used for links on layers.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"104\":{\"id\":\"106\",\"title\":\"News Header\",\"alias\":\"explorationheader\",\"zip\":\"explorationheader.zip\",\"uid\":\"8f20d5a868c90ded08b835fb9e8307d7\",\"img\":\"explorationheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-news-header\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a> to add links to buttons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"105\":{\"id\":\"107\",\"title\":\"Minimal Website Package\",\"alias\":\"minimal-website-package\",\"zip\":\"\",\"uid\":\"minimal-website-package\",\"img\":\"packages\\/template_group_1_1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"110\",\"description\":\"<span class=\\\"ttm_content\\\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">\\r\\nIn the <a href=\\\"https:\\/\\/https:\\/\\/www.themepunch.com\\/slider-revolution\\/custom-css-javascript\\/\\\" target=\\\"_blank\\\">Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.<br\\/>\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-attributes\\/\\\" target=\\\"_blank\\\">Layers Attributes<\\/a> \\\".tp-colorchange\\\".<br\\/><br\\/>\\r\\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"106\":{\"id\":\"108\",\"title\":\"Website Builder Package\",\"alias\":\"websitebuilder-package\",\"zip\":\"\",\"uid\":\"websitebuilder-package\",\"img\":\"packages\\/template_group_2.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"60\",\"description\":\"<span class=\\\"ttm_content\\\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"107\":{\"id\":\"109\",\"title\":\"Dark Content Block Package\",\"alias\":\"dark-fullsite-block-package\",\"zip\":\"\",\"uid\":\"dark-fullsite-block-package\",\"img\":\"packages\\/template_group_4.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"108\":{\"id\":\"110\",\"title\":\"Light Content Block Package\",\"alias\":\"fullsite-block-package\",\"zip\":\"\",\"uid\":\"fullsite-block-package\",\"img\":\"packages\\/template_group_3.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"109\":{\"id\":\"111\",\"title\":\"Typewriter Effect\",\"alias\":\"typewritereffect\",\"zip\":\"typewritereffect.zip\",\"uid\":\"d6f8bae06cc4a7b158d680c01e59ddc2\",\"img\":\"typewritereffect\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-typewriter-effect\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This is the example slider from the Typewriter add-on preview.<br\\/><a href=\\\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/layer-settings\\/#layeractions\\\">\\\"Layer Actions\\\"<\\/a> are used for links on buttons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This slider template requires the <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\\\" target=\\\"_blank\\\">Typewriter add-on<\\/a> to be installed. Edit the slides to change images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"110\":{\"id\":\"112\",\"title\":\"Blend Mode Header\",\"alias\":\"blendmodeheader\",\"zip\":\"blendmodeheader.zip\",\"uid\":\"2e44e976596d757aab40ffa28086dcf9\",\"img\":\"blendmodeheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/blend-mode-hero-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"1000\",\"description\":\"<span class=\\\"ttm_content\\\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"111\":{\"id\":\"113\",\"title\":\"Themeplicity Menu\",\"alias\":\"themeplicity_menu\",\"zip\":\"packs\\/themeplicity_menu.zip\",\"uid\":\"7d5c1e75eaafa63683895a32a62f4ce0\",\"img\":\"themeplicity_menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"90\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"112\":{\"id\":\"114\",\"title\":\"Themeplicity Header\",\"alias\":\"themeplicity_header\",\"zip\":\"packs\\/themeplicity_header.zip\",\"uid\":\"907091e4d58acc7d12f802de2f280b7d\",\"img\":\"themeplicity_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"1000\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"113\":{\"id\":\"115\",\"title\":\"Themeplicity Offer\",\"alias\":\"themeplicity_offer\",\"zip\":\"packs\\/themeplicity_offer.zip\",\"uid\":\"1bd8f9aa2f3e340449664c65ba17fb51\",\"img\":\"themeplicity_offer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"330\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"114\":{\"id\":\"116\",\"title\":\"Themeplicity What We Do\",\"alias\":\"themeplicity_whatwedo\",\"zip\":\"packs\\/themeplicity_whatwedo.zip\",\"uid\":\"aa800a44b5a3eab30414dde1f32bfed7\",\"img\":\"themeplicity_whatwedo\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"813\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"115\":{\"id\":\"117\",\"title\":\"Themeplicity Projects\",\"alias\":\"themeplicity_projects\",\"zip\":\"packs\\/themeplicity_projects.zip\",\"uid\":\"5f61b3a13033ba6a51a18270163e0a50\",\"img\":\"themeplicity_projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"813\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"116\":{\"id\":\"118\",\"title\":\"Themeplicity Whats Great\",\"alias\":\"themeplicity_whatsgreat\",\"zip\":\"packs\\/themeplicity_whatsgreat.zip\",\"uid\":\"ce9faf8c55ed2e33e091b23667e7173b\",\"img\":\"themeplicity_whatsgreat\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"117\":{\"id\":\"119\",\"title\":\"Themeplicity Tables\",\"alias\":\"themeplicity_tables\",\"zip\":\"packs\\/themeplicity_tables.zip\",\"uid\":\"f28bb4cd20ec1f29a1de7da5ad09c293\",\"img\":\"themeplicity_tables\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"1059\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"118\":{\"id\":\"120\",\"title\":\"Themeplicity Contactform\",\"alias\":\"themeplicity_contactform\",\"zip\":\"packs\\/themeplicity_contactform.zip\",\"uid\":\"3e59da970f534490774fa8e053f5b5ed\",\"img\":\"themeplicity_contactform\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"1067\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"119\":{\"id\":\"121\",\"title\":\"Themeplicity Footer\",\"alias\":\"themeplicity_footer\",\"zip\":\"packs\\/themeplicity_footer.zip\",\"uid\":\"89eeb0b4b852c5f743e1bd76e3e8f2ef\",\"img\":\"themeplicity_footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"780\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"120\":{\"id\":\"122\",\"title\":\"Themeplicity Package\",\"alias\":\"themeplicity-package\",\"zip\":\"\",\"uid\":\"themeplicity-package\",\"img\":\"packages\\/templatepack_themeplicity.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"121\":{\"id\":\"123\",\"title\":\"Nice And Clean Menu\",\"alias\":\"NiceAndClean_Menu\",\"zip\":\"packs\\/NiceAndClean_Menu.zip\",\"uid\":\"3f8c01e26c7446428e045c4b1180776d\",\"img\":\"NiceAndClean_Menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"90\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"122\":{\"id\":\"124\",\"title\":\"Nice And Clean Header\",\"alias\":\"NiceAndClean_Header\",\"zip\":\"packs\\/NiceAndClean_Header.zip\",\"uid\":\"76931033addb20a62557c2845a4d6a11\",\"img\":\"NiceAndClean_Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"123\":{\"id\":\"125\",\"title\":\"Nice And Clean Services\",\"alias\":\"NiceAndClean_Services\",\"zip\":\"packs\\/NiceAndClean_Services.zip\",\"uid\":\"02f72ec606800c8215bcadea09624e87\",\"img\":\"NiceAndClean_Services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"360\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"124\":{\"id\":\"126\",\"title\":\"Nice And Clean About\",\"alias\":\"NiceAndClean_About\",\"zip\":\"packs\\/NiceAndClean_About.zip\",\"uid\":\"9510f6fdbb8e9473e8c22f692a6bc89f\",\"img\":\"NiceAndClean_About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"125\":{\"id\":\"127\",\"title\":\"Nice And Clean Video\",\"alias\":\"niceandclean_video\",\"zip\":\"packs\\/niceandclean_video.zip\",\"uid\":\"2bb9e1ad329435cc500542d0c7025e15\",\"img\":\"niceandclean_video\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"126\":{\"id\":\"128\",\"title\":\"Nice And Clean Highlights\",\"alias\":\"niceandclean_highlights\",\"zip\":\"packs\\/niceandclean_highlights.zip\",\"uid\":\"ff396af163a79d2d5b35db17c1ea7aa6\",\"img\":\"niceandclean_highlights\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"127\":{\"id\":\"129\",\"title\":\"Nice And Clean Projects\",\"alias\":\"NiceAndClean_Projects\",\"zip\":\"packs\\/NiceAndClean_Projects.zip\",\"uid\":\"1e6695959ef83f8975b52289c08a4d44\",\"img\":\"NiceAndClean_Projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"600\",\"height\":\"600\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"128\":{\"id\":\"130\",\"title\":\"Nice And Clean TextBlocks\",\"alias\":\"niceandclean_textblocks\",\"zip\":\"packs\\/niceandclean_textblocks.zip\",\"uid\":\"1f33eb839c96ea3225faff1c8d382b05\",\"img\":\"niceandclean_textblocks\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"129\":{\"id\":\"131\",\"title\":\"Nice And Clean CallOut\",\"alias\":\"niceandclean_callout\",\"zip\":\"packs\\/niceandclean_callout.zip\",\"uid\":\"54d4d9bcf79d357de0e614700e909863\",\"img\":\"niceandclean_callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"130\":{\"id\":\"132\",\"title\":\"Nice And Clean Footer\",\"alias\":\"niceandclean_footer\",\"zip\":\"packs\\/niceandclean_footer.zip\",\"uid\":\"5492d7f72b3771a4e754f91bda063b15\",\"img\":\"niceandclean_footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"400\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">For using the social sharing buttons, please install the social sharing add-on.<br><br><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"131\":{\"id\":\"134\",\"title\":\"80s Style Intro\",\"alias\":\"80s\",\"zip\":\"80s.zip\",\"uid\":\"98881ab51f71b2fbdb220752d321b15a\",\"img\":\"80s\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/80s-style-intro\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This intro hero block takes you back to the 80\'s with some funky effects.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and text.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"132\":{\"id\":\"135\",\"title\":\"Blur Effect Slider\",\"alias\":\"blurslider\",\"zip\":\"blurslider.zip\",\"uid\":\"83bd6e1ccef83f03c944fa05b0a2d879\",\"img\":\"blurslider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/blur-effect-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This slider makes use of the brand new blur effects available with version 5.3.1.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">This is a \\\"Default\\\" content slider. Just edit the slides to change the background images and texts.<br\\/><br\\/><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"133\":{\"id\":\"136\",\"title\":\"Coming Soon Add-On\",\"alias\":\"ComingSoonAddon\",\"zip\":\"ComingSoonAddon.zip\",\"uid\":\"51258492055b940099eb96ba52901fa9\",\"img\":\"ComingSoonAddon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coming-soon-add-on\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This slider template makes use of the brand new Coming Soon Add-On.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-maintenance-addon\\\\\\/revslider-maintenance-addon.php\\\",\\\"name\\\":\\\"Coming Soon & Maintenance AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/revslider-doc\\\\\\/add-coming-soon-maintenance\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"134\":{\"id\":\"137\",\"title\":\"Nice And Clean Package\",\"alias\":\"nice-and-clean-package\",\"zip\":\"\",\"uid\":\"nice-and-clean-package\",\"img\":\"packages\\/templatepack_niceandclean.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"135\":{\"id\":\"138\",\"title\":\"Snow Effect Add-On\",\"alias\":\"snowaddon\",\"zip\":\"snowaddon.zip\",\"uid\":\"7408d8567b8af5716eaabd390422e51b\",\"img\":\"snowaddon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/snow-effect-add-on\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \\\"Holiday Snow\\\" Add-On.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"136\":{\"id\":\"139\",\"title\":\"Particle Effect One\",\"alias\":\"particle-effect-one\",\"zip\":\"particle-effect-one.zip\",\"uid\":\"a4611c906e35ca60f617da86217b5299\",\"img\":\"particle-effect-one\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/particle-effect-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A unique particle effect that can serve as a stunning intro for your website.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \\\"BLEND MODE IMAGE\\\" layer and go to \\\"advanced style -> filters -> blend mode\\\".<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"137\":{\"id\":\"140\",\"title\":\"Particle Effect Two\",\"alias\":\"particle-effect-two\",\"zip\":\"particle-effect-two.zip\",\"uid\":\"b8ecbf43374a69e4ab329ea834862ef8\",\"img\":\"particle-effect-two\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/particle-effect-intro\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A unique particle effect that can serve as a stunning intro for your website.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"138\":{\"id\":\"141\",\"title\":\"Particle Effect Three\",\"alias\":\"particle-effect-three\",\"zip\":\"particle-effect-three.zip\",\"uid\":\"b33bc2c5655d8d51cd17c3740f72e748\",\"img\":\"particle-effect-three\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/particle-background-effect\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A unique particle effect that can serve as a stunning intro for your website.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \\\"BLEND IMAGE\\\" layer and go to \\\"advanced style -> filters -> blend mode\\\".<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"139\":{\"id\":\"142\",\"title\":\"Portfolio Viewer\",\"alias\":\"portfolioviewer\",\"zip\":\"portfolioviewer.zip\",\"uid\":\"9ac7230ff5b880fb6c8f28fbbc123b3b\",\"img\":\"portfolioviewer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-portfolio-plugin\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">The navigation for the slides is found in the <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/global-layers\\/\\\" target=\\\"_blank\\\">Static Layers<\\/a>.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"140\":{\"id\":\"143\",\"title\":\"App Showcase\",\"alias\":\"appshowcase\",\"zip\":\"appshowcase.zip\",\"uid\":\"082aef931b0369080bc30c3a2a0c331f\",\"img\":\"appshowcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-showcase-wordpress-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This template shows off our new \\\"Polyfold Effects\\\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"141\":{\"id\":\"144\",\"title\":\"Gravity Design Hero\",\"alias\":\"gravitydesign\",\"zip\":\"gravitydesign.zip\",\"uid\":\"7bdbe73a6e5bf290cb4412708ac4134d\",\"img\":\"gravitydesign\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/best-wordpress-slider-plugin-2017\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \\\"Particle Effects\\\" Add-on to be installed.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"142\":{\"id\":\"145\",\"title\":\"404 Error Page\",\"alias\":\"404errorpage\",\"zip\":\"404errorpage.zip\",\"uid\":\"2dc62d802b42b73088651cac17d0c486\",\"img\":\"404errorpage\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/404-error-page-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"{\\\"1\\\":{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}}\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"143\":{\"id\":\"146\",\"title\":\"Carousel Gallery\",\"alias\":\"carouselgallery\",\"zip\":\"carouselgallery.zip\",\"uid\":\"041838fd32923c40e15c998f0ea19526\",\"img\":\"carouselgallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-carousel-gallery\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"144\":{\"id\":\"147\",\"title\":\"Filmstrip Effect\",\"alias\":\"filmstrip\",\"zip\":\"filmstrip.zip\",\"uid\":\"7bd142f272cc15d86998a79520e9e581\",\"img\":\"filmstrip\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/filmstrip-add-on-slider\\/ \",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\\r\\n There is lots of customization options like animation speed and direction.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-filmstrip-addon\\\\\\/revslider-filmstrip-addon.php\\\",\\\"name\\\":\\\"Background FilmStrip Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"145\":{\"id\":\"148\",\"title\":\"Space Opera\",\"alias\":\"spaceopera\",\"zip\":\"spaceopera.zip\",\"uid\":\"a2c8bffcb138a86c0f373adebb6de046\",\"img\":\"spaceopera\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/space-opera-presentation\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"146\":{\"id\":\"149\",\"title\":\"Website Intro\",\"alias\":\"websiteintro\",\"zip\":\"websiteintro.zip\",\"uid\":\"348df76d999456aa19be58c9df56ae20\",\"img\":\"websiteintro\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/website-intro-wordpress-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-slicey-addon\\\\\\/revslider-slicey-addon.php\\\",\\\"name\\\":\\\"Background Slicey Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"147\":{\"id\":\"150\",\"title\":\"Mask Showcase\",\"alias\":\"maskshowcase\",\"zip\":\"maskshowcase.zip\",\"uid\":\"fc943c31e2da9c63b252aeabf554d128\",\"img\":\"maskshowcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-mask-showcase\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"148\":{\"id\":\"151\",\"title\":\"Parallax Zoom Slices\",\"alias\":\"parallaxzoomslices\",\"zip\":\"parallaxzoomslices.zip\",\"uid\":\"83537cae05709ddb9bcb7375470a5894\",\"img\":\"parallaxzoomslices\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-zoom-slices-wordpress-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-slicey-addon\\\\\\/revslider-slicey-addon.php\\\",\\\"name\\\":\\\"Background Slicey Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"149\":{\"id\":\"152\",\"title\":\"Double Exposure Effect\",\"alias\":\"doubleexposureeffect\",\"zip\":\"doubleexposureeffect.zip\",\"uid\":\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\",\"img\":\"doubleexposureeffect\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-double-exposure-effect\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"150\":{\"id\":\"153\",\"title\":\"Mountain Parallax Header\",\"alias\":\"mountainparallaxheader\",\"zip\":\"mountainparallaxheader.zip\",\"uid\":\"8dc64663f317a2abdf179bbe341d016e\",\"img\":\"mountainparallaxheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/mountain-wordpress-parallax-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"151\":{\"id\":\"154\",\"title\":\"GoodNews One-Pager Package\",\"alias\":\"goodnews-one-pager-package\",\"zip\":\"\",\"uid\":\"goodnews-one-pager-package\",\"img\":\"packages\\/templatepack_goodnews_one_pager.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.4.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"slider\",\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"152\":{\"id\":\"155\",\"title\":\"GoodNews Menu\",\"alias\":\"goodnewsmenu\",\"zip\":\"packs\\/goodnewsmenu.zip\",\"uid\":\"4cbc82501ff340fcdc0acf7eb3ba2640\",\"img\":\"goodnewsmenu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"153\":{\"id\":\"156\",\"title\":\"GoodNews Header\",\"alias\":\"goodnewsheader\",\"zip\":\"packs\\/goodnewsheader.zip\",\"uid\":\"c6660b6bdbf596f38466f569596f5259\",\"img\":\"goodnewsheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"154\":{\"id\":\"157\",\"title\":\"GoodNews Whats Hot\",\"alias\":\"goodnewswhatshot\",\"zip\":\"packs\\/goodnewswhatshot.zip\",\"uid\":\"cb841ce64a99a6644adab049cf5405cd\",\"img\":\"goodnewswhatshot\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"155\":{\"id\":\"158\",\"title\":\"GoodNews Featured\",\"alias\":\"goodnewsfeatured\",\"zip\":\"packs\\/goodnewsfeatured.zip\",\"uid\":\"00bde4b09e3700da7183999eaf137ccc\",\"img\":\"goodnewsfeatured\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.3\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"156\":{\"id\":\"159\",\"title\":\"GoodNews Spotlight\",\"alias\":\"goodnewsspotlight\",\"zip\":\"packs\\/goodnewsspotlight.zip\",\"uid\":\"138076241a828e1c5764379944755f2b\",\"img\":\"goodnewsspotlight\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.4\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"157\":{\"id\":\"160\",\"title\":\"GoodNews Carousel\",\"alias\":\"goodnewscarousel\",\"zip\":\"packs\\/goodnewscarousel.zip\",\"uid\":\"d29d4460a6015e30d08d2714232d3768\",\"img\":\"goodnewscarousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"158\":{\"id\":\"161\",\"title\":\"GoodNews Callout\",\"alias\":\"goodnewscallout\",\"zip\":\"packs\\/goodnewscallout.zip\",\"uid\":\"d9568b3193e96577fae630b3a6728785\",\"img\":\"goodnewscallout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"159\":{\"id\":\"162\",\"title\":\"GoodNews Footer\",\"alias\":\"goodnewsfooter\",\"zip\":\"packs\\/goodnewsfooter.zip\",\"uid\":\"34f43f891cb8d55375149dc4bbc38298\",\"img\":\"goodnewsfooter\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"160\":{\"id\":\"163\",\"title\":\"GoodNews Content Page Package\",\"alias\":\"goodnews-content-page-package\",\"zip\":\"\",\"uid\":\"goodnews-content-page-package\",\"img\":\"packages\\/templatepack_goodnews_content_page_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"161\":{\"id\":\"164\",\"title\":\"GoodNews Menu Back\",\"alias\":\"goodnewsmenuback\",\"zip\":\"packs\\/goodnewsmenuback.zip\",\"uid\":\"1340d1aeefba497a7d404d12a1fceed4\",\"img\":\"goodnewsmenuback\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"162\":{\"id\":\"165\",\"title\":\"GoodNews Blog Header\",\"alias\":\"goodnewsblogheader\",\"zip\":\"packs\\/goodnewsblogheader.zip\",\"uid\":\"abc4d7c1e48475c6def05f1f6d8bf564\",\"img\":\"goodnewsblogheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"163\":{\"id\":\"166\",\"title\":\"GoodNews Blog Content\",\"alias\":\"goodnewsblogcontent\",\"zip\":\"packs\\/goodnewsblogcontent.zip\",\"uid\":\"bbf34563da6db2779c29599b503b07e9\",\"img\":\"goodnewsblogcontent\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"164\":{\"id\":\"167\",\"title\":\"GoodNews Testimonials\",\"alias\":\"goodnewstestimonials\",\"zip\":\"packs\\/goodnewstestimonials.zip\",\"uid\":\"606b7336e86f69c567542d3f43712b56\",\"img\":\"goodnewstestimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"165\":{\"id\":\"168\",\"title\":\"GoodNews Blog Footer\",\"alias\":\"goodnewsblogfooter\",\"zip\":\"packs\\/goodnewsblogfooter.zip\",\"uid\":\"1fb88aecfb116fde67ce8d52bd3b5f05\",\"img\":\"goodnewsblogfooter\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"166\":{\"id\":\"169\",\"title\":\"Before After Slider\",\"alias\":\"beforeafterslider\",\"zip\":\"beforeafterslider.zip\",\"uid\":\"6e615091a1fc3037c24b985ce5136fb2\",\"img\":\"beforeafterslider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/before-after-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.3.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This is the example slider for our Before \\/ After Add-On that allows you to create unique presentations with a comparing functionality.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">How to install <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\\\" target=\\\"_blank\\\">Add-Ons<\\/a>.<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-beforeafter-addon\\\\\\/revslider-beforeafter-addon.php\\\",\\\"name\\\":\\\"Before After AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"167\":{\"id\":\"170\",\"title\":\"Product Showcase\",\"alias\":\"productshowcase\",\"zip\":\"productshowcase.zip\",\"uid\":\"a43447670260aaa7e8ff66cedfddb57a\",\"img\":\"productshowcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-product-showcase-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.5\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"168\":{\"id\":\"171\",\"title\":\"Overexposure Transition\",\"alias\":\"overexposuretransition\",\"zip\":\"overexposuretransition.zip\",\"uid\":\"13f16bbe6c6d646c7d0cb817a0d3d181\",\"img\":\"overexposuretransition\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/overexposure-transition-effect\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.5\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">How to install <a href=\\\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\\\" target=\\\"_blank\\\">Add-Ons<\\/a>.<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"169\":{\"id\":\"172\",\"title\":\"Parallax Scroll\",\"alias\":\"parallaxscroll\",\"zip\":\"parallaxscroll.zip\",\"uid\":\"82546ee2f6af6c6682852f495109b3c3\",\"img\":\"parallaxscroll\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-scroll\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.5\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">A strikingly colourful header for your website with super smooth parallax effects.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"170\":{\"id\":\"173\",\"title\":\"TechCo One-Pager Package\",\"alias\":\"techco-one-pager-package\",\"zip\":\"\",\"uid\":\"techco-one-pager-package\",\"img\":\"packages\\/techco_overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"171\":{\"id\":\"174\",\"title\":\"TechCo Menu\",\"alias\":\"techco-menu\",\"zip\":\"packs\\/techco-menu.zip\",\"uid\":\"55e5efee828cdf1ff7e2d3b90a301ea9\",\"img\":\"techco-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"172\":{\"id\":\"175\",\"title\":\"TechCo Header\",\"alias\":\"techco-header\",\"zip\":\"packs\\/techco-header.zip\",\"uid\":\"fb574d1376de9b1e408c91f51e6497d7\",\"img\":\"techco-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"173\":{\"id\":\"176\",\"title\":\"TechCo About\",\"alias\":\"techco-about\",\"zip\":\"packs\\/techco-about.zip\",\"uid\":\"ba216da8231e55118d87e37d2358812c\",\"img\":\"techco-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"174\":{\"id\":\"177\",\"title\":\"TechCo Services\",\"alias\":\"techco-services\",\"zip\":\"packs\\/techco-services.zip\",\"uid\":\"ef4a8ddbb5e1136133f7bc1227248e22\",\"img\":\"techco-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"175\":{\"id\":\"178\",\"title\":\"TechCo Video\",\"alias\":\"techco-video\",\"zip\":\"packs\\/techco-video.zip\",\"uid\":\"d7bb92281d05f39f9bc9eca71f90e402\",\"img\":\"techco-video\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"176\":{\"id\":\"179\",\"title\":\"TechCo Prices\",\"alias\":\"techco-prices\",\"zip\":\"packs\\/techco-prices.zip\",\"uid\":\"6291f404efbea12bb181352aba71ef11\",\"img\":\"techco-prices\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"177\":{\"id\":\"180\",\"title\":\"TechCo Testimonials\",\"alias\":\"techco-testimonials\",\"zip\":\"packs\\/techco-testimonials.zip\",\"uid\":\"3460bd51f6b80599266fecb7fbb918be\",\"img\":\"techco-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"178\":{\"id\":\"181\",\"title\":\"TechCo Footer\",\"alias\":\"techco-footer\",\"zip\":\"packs\\/techco-footer.zip\",\"uid\":\"640abcd549137520461a4a71ff758a3b\",\"img\":\"techco-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"179\":{\"id\":\"182\",\"title\":\"Live Weather\",\"alias\":\"weather\",\"zip\":\"weather.zip\",\"uid\":\"aab92e69374e4c7b8c6741fe02e574b9\",\"img\":\"weather\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-live-weather-add-on\\/\",\"version\":\"1.0.3\",\"required\":\"5.4.5.2\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-weather-addon\\\\\\/revslider-weather-addon.php\\\",\\\"name\\\":\\\"Live Weather Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"180\":{\"id\":\"183\",\"title\":\"360 Panorama Tour\",\"alias\":\"360panorama\",\"zip\":\"360panorama.zip\",\"uid\":\"332720fdacdbb38f65e8327a2a96c52d\",\"img\":\"360panorama\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/360-degree-real-estate-virtual-tour\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.5.2\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">An example template for our Panorama 360 tour add-on, created for the real estate market.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-panorama-addon\\\\\\/revslider-panorama-addon.php\\\",\\\"name\\\":\\\"Panorama AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"181\":{\"id\":\"184\",\"title\":\"Duotone Add-on\",\"alias\":\"duotone-add-on\",\"zip\":\"duotone-add-on.zip\",\"uid\":\"a428c6f363b3146e96d20a6f44958922\",\"img\":\"duotone-add-on\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-duotone-effect-add-on\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-duotonefilters-addon\\\\\\/revslider-duotonefilters-addon.php\\\",\\\"name\\\":\\\"Duotone AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"182\":{\"id\":\"185\",\"title\":\"Reveal Add-on\",\"alias\":\"reveal-add-on\",\"zip\":\"reveal-add-on.zip\",\"uid\":\"7fa7525d8ff7fa7365cb98a437e88e32\",\"img\":\"reveal-add-on\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-content-reveal-effect\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"201\":{\"id\":\"210\",\"title\":\"Cryptocurrency Prices\",\"alias\":\"cryptoslider\",\"zip\":\"cryptoslider.zip\",\"uid\":\"c4b02210387f11946223977e940d9e9e\",\"img\":\"cryptoslider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin\\/\",\"version\":\"1.0.6\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Please refer to the \\\"Custom JavaScript\\\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row \\/ column \\/ group where the currency text elements are located in.<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"202\":{\"id\":\"211\",\"title\":\"Immersion One Page\",\"alias\":\"immersion-one-page-package\",\"zip\":\"\",\"uid\":\"immersion-one-page-package\",\"img\":\"packages\\/immersion_overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-slicey-addon\\\\\\/revslider-slicey-addon.php\\\",\\\"name\\\":\\\"Background Slicey Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"203\":{\"id\":\"212\",\"title\":\"Immersion Header\",\"alias\":\"immersion_header\",\"zip\":\"packs\\/immersion_header.zip\",\"uid\":\"853da51256308b341ecd030bd4883229\",\"img\":\"immersion_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"204\":{\"id\":\"213\",\"title\":\"Immersion Mountains\",\"alias\":\"immersion-mountains\",\"zip\":\"packs\\/immersion-mountains.zip\",\"uid\":\"817167eb3fe22b7e065ba210cbe6d53c\",\"img\":\"immersion-mountains\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-slicey-addon\\\\\\/revslider-slicey-addon.php\\\",\\\"name\\\":\\\"Background Slicey Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"205\":{\"id\":\"214\",\"title\":\"Immersion Product\",\"alias\":\"immersion-product\",\"zip\":\"packs\\/immersion-product.zip\",\"uid\":\"64134f263484d2bbcd7ef088ffbbfb4b\",\"img\":\"immersion-product\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"206\":{\"id\":\"215\",\"title\":\"Immersion Design\",\"alias\":\"immersion-design\",\"zip\":\"packs\\/immersion-design.zip\",\"uid\":\"91e1d77c1a2826438763804f4d02bc26\",\"img\":\"immersion-design\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"207\":{\"id\":\"216\",\"title\":\"Immersion Phototgraphy\",\"alias\":\"immersion-photography\",\"zip\":\"packs\\/immersion-photography.zip\",\"uid\":\"e3ddf0c577b09740f5cbf2e38ffd684d\",\"img\":\"immersion-photography\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"208\":{\"id\":\"217\",\"title\":\"Immersion Grid\",\"alias\":\"immersion-grid\",\"zip\":\"packs\\/immersion-grid.zip\",\"uid\":\"b6903868189bb83b2c7a852fde3a7dc3\",\"img\":\"immersion-grid\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.1\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"209\":{\"id\":\"218\",\"title\":\"Funky Intro Slider\",\"alias\":\"funkyslider\",\"zip\":\"funkyslider.zip\",\"uid\":\"2d4187e3fdad19b976be335253c8925d\",\"img\":\"funkyslider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/funky-intro-slider-wordpress-plugin\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"210\":{\"id\":\"219\",\"title\":\"Clear View Magazine\",\"alias\":\"clear-view-magazine-package\",\"zip\":\"\",\"uid\":\"clear-view-magazine-package\",\"img\":\"packages\\/clear_view_magazine_overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"211\":{\"id\":\"220\",\"title\":\"Clear View Menu\",\"alias\":\"clearview_menu\",\"zip\":\"packs\\/clearview_menu.zip\",\"uid\":\"eaecee5fa5f3c3a7f4d2a96c4616a353\",\"img\":\"clearview_menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"212\":{\"id\":\"221\",\"title\":\"Clear View Header\",\"alias\":\"clearview_header\",\"zip\":\"packs\\/clearview_header.zip\",\"uid\":\"25e3dd80ad130875d7438a07952cb0cd\",\"img\":\"clearview_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"213\":{\"id\":\"222\",\"title\":\"Clear View Mission\",\"alias\":\"clearview_mission\",\"zip\":\"packs\\/clearview_mission.zip\",\"uid\":\"35b2092a49fd2beb549342e69097eb5b\",\"img\":\"clearview_mission\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"214\":{\"id\":\"223\",\"title\":\"Clear View Slider\",\"alias\":\"clear-view-slider\",\"zip\":\"packs\\/clear-view-slider.zip\",\"uid\":\"d2e17edffce16ed78c54b0ef23fd7e05\",\"img\":\"clear-view-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"215\":{\"id\":\"224\",\"title\":\"Clear View News\",\"alias\":\"clear-view-news\",\"zip\":\"packs\\/clear-view-news.zip\",\"uid\":\"5698d3131ba141e9afcfd2906739dd00\",\"img\":\"clear-view-news\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"216\":{\"id\":\"225\",\"title\":\"Clear View Clients\",\"alias\":\"clear-view-clients\",\"zip\":\"packs\\/clear-view-clients.zip\",\"uid\":\"b95616a94832e22bdfac5ce60232be1b\",\"img\":\"clear-view-clients\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"217\":{\"id\":\"226\",\"title\":\"Clear View Contact\",\"alias\":\"clear-view-contact\",\"zip\":\"packs\\/clear-view-contact.zip\",\"uid\":\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\",\"img\":\"clear-view-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"218\":{\"id\":\"227\",\"title\":\"Clear View Post Page\",\"alias\":\"clear-view-post-page-package\",\"zip\":\"\",\"uid\":\"clear-view-post-page-package\",\"img\":\"packages\\/clear_view_post_page_overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"219\":{\"id\":\"228\",\"title\":\"Clear View Single Menu\",\"alias\":\"clear-view-single-menu\",\"zip\":\"packs\\/clear-view-single-menu.zip\",\"uid\":\"1e80f81982f8a4ea763482d4fa99d321\",\"img\":\"clear-view-single-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"220\":{\"id\":\"229\",\"title\":\"Clear View Single Header\",\"alias\":\"clear-view-single-header\",\"zip\":\"packs\\/clear-view-single-header.zip\",\"uid\":\"c8d717627be6cd5e70922ab609694dbf\",\"img\":\"clear-view-single-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"221\":{\"id\":\"230\",\"title\":\"Clear View Single Media\",\"alias\":\"clear-view-single-media\",\"zip\":\"packs\\/clear-view-single-media.zip\",\"uid\":\"c480368ded2a64f0cdd44f1674213814\",\"img\":\"clear-view-single-media\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"222\":{\"id\":\"231\",\"title\":\"Clear View Single More\",\"alias\":\"clear-view-single-more\",\"zip\":\"packs\\/clear-view-single-more.zip\",\"uid\":\"9c693190df26218366d1f77e10cf550a\",\"img\":\"clear-view-single-more\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"223\":{\"id\":\"232\",\"title\":\"Clear View Single Contact\",\"alias\":\"clear-view-single-contact\",\"zip\":\"packs\\/clear-view-single-contact.zip\",\"uid\":\"73c0a889f2b654a87b5aba1ff76fbc5c\",\"img\":\"clear-view-single-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"224\":{\"id\":\"233\",\"title\":\"Clean Landing Page\",\"alias\":\"cleanlandingpage\",\"zip\":\"cleanlandingpage.zip\",\"uid\":\"727a3680d312f22c6a5998ebdb9afe52\",\"img\":\"cleanlandingpage\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clean-landing-page-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"225\":{\"id\":\"234\",\"title\":\"Clear Cut\",\"alias\":\"clearcut\",\"zip\":\"clearcut.zip\",\"uid\":\"07f43c00e9b4d3057a03cdb3385ad2b7\",\"img\":\"clearcut\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-cut-portfolio-website-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"226\":{\"id\":\"235\",\"title\":\"Wonderstruck One-Pager\",\"alias\":\"wonderstruck-one-pager-package\",\"zip\":\"\",\"uid\":\"wonderstruck-one-pager-package\",\"img\":\"packages\\/wonderstruck-one-pager-overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"227\":{\"id\":\"236\",\"title\":\"Wonderstruck Menu\",\"alias\":\"wonderstruck_menu\",\"zip\":\"packs\\/wonderstruck_menu.zip\",\"uid\":\"0a976e9aaae59c4f795b38f59f5a08d8\",\"img\":\"wonderstruck_menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"228\":{\"id\":\"237\",\"title\":\"Wonderstruck Header\",\"alias\":\"wonderstruck_header\",\"zip\":\"packs\\/wonderstruck_header.zip\",\"uid\":\"e1379f77a902960a0ce12d44d85a9e0a\",\"img\":\"wonderstruck_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"229\":{\"id\":\"238\",\"title\":\"Wonderstruck About\",\"alias\":\"wonderstruck_about\",\"zip\":\"packs\\/wonderstruck_about.zip\",\"uid\":\"d207fb140fd328acc3038300ea52082a\",\"img\":\"wonderstruck_about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"230\":{\"id\":\"239\",\"title\":\"Wonderstruck Works\",\"alias\":\"wonderstruck-works\",\"zip\":\"packs\\/wonderstruck-works.zip\",\"uid\":\"4476935097e27d92454b0011b7700c1d\",\"img\":\"wonderstruck-works\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"231\":{\"id\":\"240\",\"title\":\"Wonderstruck Contact\",\"alias\":\"wonderstruck-contact\",\"zip\":\"packs\\/wonderstruck-contact.zip\",\"uid\":\"9e4911521f77bce2b8efa40f4c2adc22\",\"img\":\"wonderstruck-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"232\":{\"id\":\"241\",\"title\":\"Bubble Morph\",\"alias\":\"bubblemorph\",\"zip\":\"bubblemorph.zip\",\"uid\":\"1102d6f5460ab82cb612cbe9f1d9514b\",\"img\":\"bubblemorph\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/bubble-morph-effect-add-on-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"233\":{\"id\":\"242\",\"title\":\"Distortion AddOn\",\"alias\":\"distortionaddon\",\"zip\":\"distortionaddon.zip\",\"uid\":\"0ad46c9929bb2fa6316f1e6ced301aaf\",\"img\":\"distortionaddon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/distortion-effect-add-on-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-liquideffect-addon\\\\\\/revslider-liquideffect-addon.php\\\",\\\"name\\\":\\\"Distortion Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"234\":{\"id\":\"243\",\"title\":\"Club Flyer\",\"alias\":\"clubflyer\",\"zip\":\"clubflyer.zip\",\"uid\":\"dab73b9904d0e643a35b0475980998bd\",\"img\":\"clubflyer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/club-flyer-landing-page-template-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. <\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-explodinglayers-addon\\\\\\/revslider-explodinglayers-addon.php\\\",\\\"name\\\":\\\"Exploding Layers AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"235\":{\"id\":\"244\",\"title\":\"Paintbrush AddOn\",\"alias\":\"paintbrushaddon\",\"zip\":\"paintbrushaddon.zip\",\"uid\":\"c85c48a6742b4bf72a2590cc1b50f6a0\",\"img\":\"paintbrushaddon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/paintbrush-effect-add-on-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.5.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-paintbrush-addon\\\\\\/revslider-paintbrush-addon.php\\\",\\\"name\\\":\\\"Paintbrush AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"236\":{\"id\":\"245\",\"title\":\"Parallax One-Pager\",\"alias\":\"parallax-one-pager-package\",\"zip\":\"\",\"uid\":\"parallax-one-pager-package\",\"img\":\"packages\\/parallax-one-pager-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-one-page-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Parallax One-Pager\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"14\",\"installed\":false},\"237\":{\"id\":\"246\",\"title\":\"Parallax Header\",\"alias\":\"parallax_header\",\"zip\":\"packs\\/parallax_header.zip\",\"uid\":\"32bf4a0f5136853bd6bd366275a7a60b\",\"img\":\"parallax_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-one-page-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Parallax One-Pager\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"14\",\"installed\":false},\"238\":{\"id\":\"247\",\"title\":\"Parallax Content\",\"alias\":\"parallax_content\",\"zip\":\"packs\\/parallax_content.zip\",\"uid\":\"a25c5fb8f74757476ab4dc038e56f90d\",\"img\":\"parallax_content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-one-page-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Parallax One-Pager\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"14\",\"installed\":false},\"239\":{\"id\":\"248\",\"title\":\"Parallax Footer\",\"alias\":\"parallax_footer\",\"zip\":\"packs\\/parallax_footer.zip\",\"uid\":\"665dff9ea6eaf162a2a1f160f51a9ddb\",\"img\":\"parallax_footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-one-page-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Parallax One-Pager\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"14\",\"installed\":false},\"240\":{\"id\":\"249\",\"title\":\"Le Chef Restaurant\",\"alias\":\"le-chef-restaurant\",\"zip\":\"\",\"uid\":\"le-chef-restaurant-package\",\"img\":\"packages\\/le-chef-restaurant-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"241\":{\"id\":\"250\",\"title\":\"Le Chef Menu\",\"alias\":\"le-chef-menu\",\"zip\":\"packs\\/le-chef-menu.zip\",\"uid\":\"2f2a6a333431fefe4a7b3b6a982b2ff5\",\"img\":\"le-chef-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"242\":{\"id\":\"251\",\"title\":\"Le Chef Header\",\"alias\":\"le-chef-header\",\"zip\":\"packs\\/le-chef-header.zip\",\"uid\":\"06450ca3be5a4a8959f3752ab974e574\",\"img\":\"le-chef-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"243\":{\"id\":\"252\",\"title\":\"Le Chef Philosophy\",\"alias\":\"le-chef-philosophy\",\"zip\":\"packs\\/le-chef-philosophy.zip\",\"uid\":\"a532fd029addeb18106e751409b8e20a\",\"img\":\"le-chef-philosophy\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"244\":{\"id\":\"253\",\"title\":\"Le Chef Food\",\"alias\":\"le-chef-food\",\"zip\":\"packs\\/le-chef-food.zip\",\"uid\":\"cd4b6a2cb5de2dd20a0e8ba0c35451df\",\"img\":\"le-chef-food\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"245\":{\"id\":\"254\",\"title\":\"Le Chef La Carte\",\"alias\":\"le-chef-la-carte\",\"zip\":\"packs\\/le-chef-la-carte.zip\",\"uid\":\"6f312749679c3ba52c41189a6b8bf729\",\"img\":\"le-chef-la-carte\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"246\":{\"id\":\"255\",\"title\":\"Le Chef Footer\",\"alias\":\"le-chef-footer\",\"zip\":\"packs\\/le-chef-footer.zip\",\"uid\":\"12fc241e8e5b9e5df9758c43448e2907\",\"img\":\"le-chef-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"247\":{\"id\":\"256\",\"title\":\"News Magazine Slider\",\"alias\":\"news-magazine-slider\",\"zip\":\"news-magazine-slider.zip\",\"uid\":\"31f2c1506babb1fef459401f051d2d52\",\"img\":\"news-magazine-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/news-magazine-slider-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"248\":{\"id\":\"257\",\"title\":\"Real Estate Slider\",\"alias\":\"real-estate-slider\",\"zip\":\"real-estate-slider.zip\",\"uid\":\"739ce6336e46815094387c9448e6c804\",\"img\":\"real-estate-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/real-estate-slider-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"249\":{\"id\":\"258\",\"title\":\"Fashion Header\",\"alias\":\"fashion-header\",\"zip\":\"fashion-header.zip\",\"uid\":\"24ece4e7f4d31cd90377c62abbd9e25a\",\"img\":\"fashion-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/fashion-shop-header-slider-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \\\"Bubble Morph\\\" effect makes this module stand out!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"250\":{\"id\":\"259\",\"title\":\"Seasonal Offer\",\"alias\":\"seasonaloffer\",\"zip\":\"seasonaloffer.zip\",\"uid\":\"caf2f17f8fd64f2f89dcb3c8dd238457\",\"img\":\"seasonaloffer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/seasonal-offer-christmas-header-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"251\":{\"id\":\"260\",\"title\":\"Barber Shop\",\"alias\":\"barber-shop\",\"zip\":\"\",\"uid\":\"barber-shop-package\",\"img\":\"packages\\/barber-shop-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"252\":{\"id\":\"261\",\"title\":\"Barber Shop Header\",\"alias\":\"barber-shop-header\",\"zip\":\"packs\\/barber-shop-header.zip\",\"uid\":\"71c995d36d39a0e8a04cffdf753f2ba2\",\"img\":\"barber-shop-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"253\":{\"id\":\"262\",\"title\":\"Barber Shop Mobile Menu\",\"alias\":\"barber-shop-mobile-menu\",\"zip\":\"packs\\/barber-shop-mobile-menu.zip\",\"uid\":\"762c6fb5c6306f37becb1e55773c2592\",\"img\":\"barber-shop-mobile-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"254\":{\"id\":\"263\",\"title\":\"Barber Shop First Screen\",\"alias\":\"barber-shop-first-screen\",\"zip\":\"packs\\/barber-shop-first-screen.zip\",\"uid\":\"acf70bfd64cff2c3c2ea5585223575da\",\"img\":\"barber-shop-first-screen\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"255\":{\"id\":\"264\",\"title\":\"Barber Shop About\",\"alias\":\"barber-shop-about\",\"zip\":\"packs\\/barber-shop-about.zip\",\"uid\":\"bc8b63cfc7f8c34173b4fd5b082fc05a\",\"img\":\"barber-shop-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"256\":{\"id\":\"265\",\"title\":\"Barber Shop Services\",\"alias\":\"barber-shop-services\",\"zip\":\"packs\\/barber-shop-services.zip\",\"uid\":\"d65121d6f84fabd812a2b621b768e10e\",\"img\":\"barber-shop-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"257\":{\"id\":\"266\",\"title\":\"Barber Shop Barbers\",\"alias\":\"barber-shop-barbers\",\"zip\":\"packs\\/barber-shop-barbers.zip\",\"uid\":\"003e9fec9693072119c8f8d8b6690c4d\",\"img\":\"barber-shop-barbers\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"258\":{\"id\":\"267\",\"title\":\"Barber Shop Contacts\",\"alias\":\"barber-shop-contacts\",\"zip\":\"packs\\/barber-shop-contacts.zip\",\"uid\":\"cdcc08f5d6c90dbcfd0502bda2401643\",\"img\":\"barber-shop-contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"259\":{\"id\":\"268\",\"title\":\"Barber Shop Footer\",\"alias\":\"barber-shop-footer\",\"zip\":\"packs\\/barber-shop-footer.zip\",\"uid\":\"26ca5ae0de7cdbb2ca19348b6e01eda0\",\"img\":\"barber-shop-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"260\":{\"id\":\"269\",\"title\":\"Fitness Club\",\"alias\":\"fitness-club-template\",\"zip\":\"fitness-club-template.zip\",\"uid\":\"14ea10d68d6aad1df62b3becf71df754\",\"img\":\"fitness-club-template\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/fitness-club-header-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"261\":{\"id\":\"270\",\"title\":\"Soccer School\",\"alias\":\"soccer-school\",\"zip\":\"soccer-school.zip\",\"uid\":\"9906b48812aff67097f990eeee42dd41\",\"img\":\"soccer-school\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/soccer-club-slider-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"262\":{\"id\":\"271\",\"title\":\"Music Band\",\"alias\":\"music-band-template\",\"zip\":\"music-band-template.zip\",\"uid\":\"91e79657bf1b1812f8114a00ab8e0eb4\",\"img\":\"music-band-template\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/music-band-template-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"5.4.8.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"263\":{\"id\":\"272\",\"title\":\"Restaurant Menu\",\"alias\":\"restaurant-menu\",\"zip\":\"restaurant-menu.zip\",\"uid\":\"078809cffb21b6c4d3f5aaa2daeb193d\",\"img\":\"restaurant-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/restaurant-menu-slider-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"264\":{\"id\":\"273\",\"title\":\"Cinematic Slider\",\"alias\":\"cinematic-slider\",\"zip\":\"cinematic-slider.zip\",\"uid\":\"c53e7dcbb6b656ae7b4c91d333589838\",\"img\":\"cinematic-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/cinematic-slider-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Bold texts and a cinematic transition effect make this slider stand out!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"265\":{\"id\":\"274\",\"title\":\"3D Parallax Cubes\",\"alias\":\"3d-parallax-cubes\",\"zip\":\"3d-parallax-cubes.zip\",\"uid\":\"c5b809a1829f8f809c9a768cd3d6b3cb\",\"img\":\"3d-parallax-cubes\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/3d-parallax-cubes-slider-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"266\":{\"id\":\"275\",\"title\":\"Medicare Medical Services Website\",\"alias\":\"medicare-medical-services-website\",\"zip\":\"\",\"uid\":\"medicare-medical-services-website-package\",\"img\":\"packages\\/medicare_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"267\":{\"id\":\"276\",\"title\":\"Medicare Menu\",\"alias\":\"medicare-menu\",\"zip\":\"packs\\/medicare-menu.zip\",\"uid\":\"0e4ca8fc281e20251b3fffa19d470fed\",\"img\":\"medicare-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"268\":{\"id\":\"277\",\"title\":\"Medicare Header\",\"alias\":\"medicare-header\",\"zip\":\"packs\\/medicare-header.zip\",\"uid\":\"03e8ade247d8c96f548bc0515f34043f\",\"img\":\"medicare-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"269\":{\"id\":\"278\",\"title\":\"Medicare About\",\"alias\":\"medicare-about\",\"zip\":\"packs\\/medicare-about.zip\",\"uid\":\"a3ab9e89155ef2542820343f30b29f72\",\"img\":\"medicare-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"270\":{\"id\":\"279\",\"title\":\"Medicare Highlight\",\"alias\":\"medicare-highlight\",\"zip\":\"packs\\/medicare-highlight.zip\",\"uid\":\"c3c8a74e5402489f1a85a0c83890ef1f\",\"img\":\"medicare-highlight\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"271\":{\"id\":\"280\",\"title\":\"Medicare Services\",\"alias\":\"medicare-services\",\"zip\":\"packs\\/medicare-services.zip\",\"uid\":\"8869b0834d4649dcc3221bed65980806\",\"img\":\"medicare-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"272\":{\"id\":\"281\",\"title\":\"Medicare Doctors\",\"alias\":\"medicare-doctors\",\"zip\":\"packs\\/medicare-doctors.zip\",\"uid\":\"2c9d57afd64244b5f7e30b0d87c842f9\",\"img\":\"medicare-doctors\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"273\":{\"id\":\"282\",\"title\":\"Medicare Research\",\"alias\":\"medicare-research\",\"zip\":\"packs\\/medicare-research.zip\",\"uid\":\"31e84a91fc8b8d5296e715e539a076d0\",\"img\":\"medicare-research\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"274\":{\"id\":\"283\",\"title\":\"Medicare Why Choose\",\"alias\":\"medicare-whychoose\",\"zip\":\"packs\\/medicare-whychoose.zip\",\"uid\":\"6dad61c672127de9e35884caa45d49a0\",\"img\":\"medicare-whychoose\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"275\":{\"id\":\"284\",\"title\":\"Medicare Contact\",\"alias\":\"medicare-contact\",\"zip\":\"packs\\/medicare-contact.zip\",\"uid\":\"89bc35ad8beb62a149c42262ae49a270\",\"img\":\"medicare-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"276\":{\"id\":\"285\",\"title\":\"Medicare Footer\",\"alias\":\"medicare-footer\",\"zip\":\"packs\\/medicare-footer.zip\",\"uid\":\"ccf63e5233b3d63009e5ee90db51b37b\",\"img\":\"medicare-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"277\":{\"id\":\"286\",\"title\":\"Coffee Joint Website\",\"alias\":\"coffee-joint-website\",\"zip\":\"\",\"uid\":\"coffee-joint-website-package\",\"img\":\"packages\\/coffee_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"278\":{\"id\":\"287\",\"title\":\"Coffee Menu\",\"alias\":\"coffee-menu\",\"zip\":\"packs\\/coffee-menu.zip\",\"uid\":\"81195cad7be3f5180a267b34ce8cf966\",\"img\":\"coffee-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"279\":{\"id\":\"288\",\"title\":\"Coffee Header\",\"alias\":\"coffee-header\",\"zip\":\"packs\\/coffee-header.zip\",\"uid\":\"5eed8adb9d3ae12168ad4735ac63eb20\",\"img\":\"coffee-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"280\":{\"id\":\"289\",\"title\":\"Coffee Philosophy\",\"alias\":\"coffee-philosophy\",\"zip\":\"packs\\/coffee-philosophy.zip\",\"uid\":\"76b5ccae3fa87fd0f991b87e7ae71c27\",\"img\":\"coffee-philosophy\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"281\":{\"id\":\"290\",\"title\":\"Coffee Carte\",\"alias\":\"coffee-carte\",\"zip\":\"packs\\/coffee-carte.zip\",\"uid\":\"470214ddd2cec585629fb79a0fd908d6\",\"img\":\"coffee-carte\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"282\":{\"id\":\"291\",\"title\":\"Coffee Teaser\",\"alias\":\"coffee-teaser\",\"zip\":\"packs\\/coffee-teaser.zip\",\"uid\":\"2ed868896c92a7bfb6431803c79e8486\",\"img\":\"coffee-teaser\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"283\":{\"id\":\"292\",\"title\":\"Coffee Find Us\",\"alias\":\"coffee-findus\",\"zip\":\"packs\\/coffee-findus.zip\",\"uid\":\"96d3784473dfa64bce9e1e4101919927\",\"img\":\"coffee-findus\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"284\":{\"id\":\"293\",\"title\":\"Coffee Footer\",\"alias\":\"coffee-footer\",\"zip\":\"packs\\/coffee-footer.zip\",\"uid\":\"6027c25e87a5fe7fd8727a51c0967915\",\"img\":\"coffee-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"285\":{\"id\":\"294\",\"title\":\"Minimal Portfolio Website\",\"alias\":\"minimal-portfolio-website\",\"zip\":\"\",\"uid\":\"minimal-portfolio-website\",\"img\":\"packages\\/minimal_portfolio_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-portfolio-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Minimal Portfolio template is a slide based website with additional modal detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Portfolio\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"19\",\"installed\":false},\"286\":{\"id\":\"295\",\"title\":\"Minimal Portfolio\",\"alias\":\"minimal-portfolio\",\"zip\":\"packs\\/minimal-portfolio.zip\",\"uid\":\"183b97b301d5ff0b171c067a87c8a3f5\",\"img\":\"minimal-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-portfolio-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Minimal Portfolio template is a slide based website with additional modal detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Portfolio\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"19\",\"installed\":false},\"287\":{\"id\":\"296\",\"title\":\"Minimal Portfolio Modal\",\"alias\":\"minimal-portfolio-modal\",\"zip\":\"packs\\/minimal-portfolio-modal.zip\",\"uid\":\"6874e6cec3663670f209a8d8a4f26b16\",\"img\":\"minimal-portfolio-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-portfolio-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Minimal Portfolio template is a slide based website with additional modal detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Portfolio\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"19\",\"installed\":false},\"288\":{\"id\":\"297\",\"title\":\"Angled Business Website\",\"alias\":\"angled-business-website\",\"zip\":\"\",\"uid\":\"angled-business-website-package\",\"img\":\"packages\\/angled_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"289\":{\"id\":\"298\",\"title\":\"Angled Menu\",\"alias\":\"angled-menu\",\"zip\":\"packs\\/angled-menu.zip\",\"uid\":\"2fe0c4682d1231ee3918be9e4fcb1837\",\"img\":\"angled-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"290\":{\"id\":\"299\",\"title\":\"Angled Header\",\"alias\":\"angled-header\",\"zip\":\"packs\\/angled-header.zip\",\"uid\":\"09462601d4edca8dff899de6f666dc47\",\"img\":\"angled-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"291\":{\"id\":\"300\",\"title\":\"Angled News\",\"alias\":\"angled-news\",\"zip\":\"packs\\/angled-news.zip\",\"uid\":\"b315105763ed91214cb2f0ac12615729\",\"img\":\"angled-news\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"292\":{\"id\":\"301\",\"title\":\"Angled Services\",\"alias\":\"angled-services\",\"zip\":\"packs\\/angled-services.zip\",\"uid\":\"7605651c1487e1a6c32edc70017be8ad\",\"img\":\"angled-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"293\":{\"id\":\"302\",\"title\":\"Angled Success\",\"alias\":\"angled-success\",\"zip\":\"packs\\/angled-success.zip\",\"uid\":\"9e3fa974a42ecf80e1ec6ff991fca430\",\"img\":\"angled-success\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"294\":{\"id\":\"303\",\"title\":\"Angled Footer\",\"alias\":\"angled-footer\",\"zip\":\"packs\\/angled-footer.zip\",\"uid\":\"aed4eaa2f7883351ba9c9947feef153e\",\"img\":\"angled-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"295\":{\"id\":\"304\",\"title\":\"Angled Content Modal\",\"alias\":\"angled-content-modal\",\"zip\":\"packs\\/angled-content-modal.zip\",\"uid\":\"4ddc74515fdf84f974217e4ed47a7c66\",\"img\":\"angled-content-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"296\":{\"id\":\"312\",\"title\":\"Retouch Before and After\",\"alias\":\"Retouch\",\"zip\":\"Retouch.zip\",\"uid\":\"58894991f1abd8b448c8d353b1b5fe76\",\"img\":\"Retouch\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/retouch-before-after-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Retouch Slider is the perfect way to compare your photos before and after retouching.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-beforeafter-addon\\\\\\/revslider-beforeafter-addon.php\\\",\\\"name\\\":\\\"Before After AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"297\":{\"id\":\"313\",\"title\":\"Tech Slider\",\"alias\":\"tech-slider\",\"zip\":\"tech-slider.zip\",\"uid\":\"a98e2b264f00a1116d21808c6a543162\",\"img\":\"tech-slider\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/tech-showcase-slider-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">This classic slider module with sleek device mockups features a smooth parallax effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"298\":{\"id\":\"314\",\"title\":\"Peak Agency Website\",\"alias\":\"peak-agency-website\",\"zip\":\"\",\"uid\":\"peak-agency-website-package\",\"img\":\"packages\\/peak_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"299\":{\"id\":\"315\",\"title\":\"Peak Header\",\"alias\":\"peak-header\",\"zip\":\"packs\\/peak-header.zip\",\"uid\":\"b721bd612e9fbc5182418ad3fd7d0808\",\"img\":\"peak-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"300\":{\"id\":\"316\",\"title\":\"Peak About\",\"alias\":\"peak-about\",\"zip\":\"packs\\/peak-about.zip\",\"uid\":\"7e68b1012fb03490d45c7f79e8cb1b19\",\"img\":\"peak-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"301\":{\"id\":\"317\",\"title\":\"Peak Portfolio\",\"alias\":\"peak-portfolio\",\"zip\":\"packs\\/peak-portfolio.zip\",\"uid\":\"6198d1885ba9e95221c33e404f21bdbc\",\"img\":\"peak-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"302\":{\"id\":\"318\",\"title\":\"Peak Footer\",\"alias\":\"peak-footer\",\"zip\":\"packs\\/peak-footer.zip\",\"uid\":\"2dead6897ad3b3a709b380d81242f76b\",\"img\":\"peak-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"303\":{\"id\":\"319\",\"title\":\"Modern Portfolio Website\",\"alias\":\"modern-portfolio-website\",\"zip\":\"\",\"uid\":\"modern-portfolio-website-package\",\"img\":\"packages\\/portfolio-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"304\":{\"id\":\"320\",\"title\":\"Portfolio Welcome\",\"alias\":\"portfolio-welcome\",\"zip\":\"packs\\/portfolio-welcome.zip\",\"uid\":\"97336b8785e4a7b27facaf1547e0464d\",\"img\":\"portfolio-welcome\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"305\":{\"id\":\"321\",\"title\":\"Portfolio About\",\"alias\":\"portfolio-about\",\"zip\":\"packs\\/portfolio-about.zip\",\"uid\":\"5d3a4724fd453de5313ceb6696c1db62\",\"img\":\"portfolio-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"306\":{\"id\":\"322\",\"title\":\"Portfolio Works Title\",\"alias\":\"portfolio-works-title\",\"zip\":\"packs\\/portfolio-works-title.zip\",\"uid\":\"cbb5c6e875cc1f25b463fdf89cabef28\",\"img\":\"portfolio-works-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"307\":{\"id\":\"323\",\"title\":\"Portfolio Works Content\",\"alias\":\"portfolio-works-content\",\"zip\":\"packs\\/portfolio-works-content.zip\",\"uid\":\"5c87311128c7794ffa6ee07ea0648082\",\"img\":\"portfolio-works-content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"308\":{\"id\":\"324\",\"title\":\"Portfolio Contacts\",\"alias\":\"portfolio-contacts\",\"zip\":\"packs\\/portfolio-contacts.zip\",\"uid\":\"bd81feffad83b69218f7e837478038e5\",\"img\":\"portfolio-contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"309\":{\"id\":\"325\",\"title\":\"App Studio Website\",\"alias\":\"app-studio-website\",\"zip\":\"\",\"uid\":\"app-studio-website-package\",\"img\":\"packages\\/App_Studio_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"310\":{\"id\":\"326\",\"title\":\"App Studio Welcome\",\"alias\":\"App-Studio-Welcome\",\"zip\":\"packs\\/App-Studio-Welcome.zip\",\"uid\":\"2ce0f3c54214b04e6c3a9becfd59730c\",\"img\":\"App-Studio-Welcome\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"311\":{\"id\":\"327\",\"title\":\"App Studio Services\",\"alias\":\"App-Studio-Services\",\"zip\":\"packs\\/App-Studio-Services.zip\",\"uid\":\"5df7776271ec69d2f9edaa6b842715a9\",\"img\":\"App-Studio-Services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"312\":{\"id\":\"328\",\"title\":\"App Studio About\",\"alias\":\"App-Studio-About\",\"zip\":\"packs\\/App-Studio-About.zip\",\"uid\":\"af8b84dc116c629df7bd89fc69271a2e\",\"img\":\"App-Studio-About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"313\":{\"id\":\"329\",\"title\":\"App Studio Contacts\",\"alias\":\"App-Studio-Contacts\",\"zip\":\"packs\\/App-Studio-Contacts.zip\",\"uid\":\"afbbd2214c983d314f3215a00db9198d\",\"img\":\"App-Studio-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"314\":{\"id\":\"330\",\"title\":\"Cube Animation\",\"alias\":\"cube-animation\",\"zip\":\"cube-animation.zip\",\"uid\":\"c03dd3cfc60479dfc6d79ddb64fa0ec5\",\"img\":\"cube-animation\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/cube-animation-slider-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern slider with text elements, cube animations and a striking call to action button.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"315\":{\"id\":\"331\",\"title\":\"Basic Website\",\"alias\":\"basic-website\",\"zip\":\"\",\"uid\":\"basic-website-package\",\"img\":\"packages\\/basic_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"316\":{\"id\":\"332\",\"title\":\"Basic Menu\",\"alias\":\"basic-menu\",\"zip\":\"packs\\/basic-menu.zip\",\"uid\":\"39277f53b2cb5ac644a1649b47c37270\",\"img\":\"basic-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"317\":{\"id\":\"333\",\"title\":\"Basic Header\",\"alias\":\"basic-header\",\"zip\":\"packs\\/basic-header.zip\",\"uid\":\"ad7a32dbccb0bdf9de64cf2adfa950a2\",\"img\":\"basic-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"318\":{\"id\":\"334\",\"title\":\"Basic Content\",\"alias\":\"basic-content\",\"zip\":\"packs\\/basic-content.zip\",\"uid\":\"0b12f3b183a3c8206e3a7b28d2d93108\",\"img\":\"basic-content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"319\":{\"id\":\"335\",\"title\":\"Basic Carousel\",\"alias\":\"basic-carousel\",\"zip\":\"packs\\/basic-carousel.zip\",\"uid\":\"e4abb5c6d5cf914530575a982d3dfc14\",\"img\":\"basic-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"320\":{\"id\":\"336\",\"title\":\"Basic Callout\",\"alias\":\"basic-callout\",\"zip\":\"packs\\/basic-callout.zip\",\"uid\":\"2ccc208b9322f5435d0f4ff64c6d9dab\",\"img\":\"basic-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"321\":{\"id\":\"337\",\"title\":\"Basic Grid\",\"alias\":\"basic-grid\",\"zip\":\"packs\\/basic-grid.zip\",\"uid\":\"3cb4b41d2992eba012921b8fb7c96daa\",\"img\":\"basic-grid\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"322\":{\"id\":\"338\",\"title\":\"Basic Video Block\",\"alias\":\"basic-video-block\",\"zip\":\"packs\\/basic-video-block.zip\",\"uid\":\"e7c1d42b21819741f3e72c1325dae5ed\",\"img\":\"basic-video-block\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"323\":{\"id\":\"339\",\"title\":\"Basic Footer\",\"alias\":\"basic-footer\",\"zip\":\"packs\\/basic-footer.zip\",\"uid\":\"ed8f6a554775ebace558af2f4f2dcbac\",\"img\":\"basic-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"324\":{\"id\":\"340\",\"title\":\"Basic Lightbox\",\"alias\":\"basic-lightbox\",\"zip\":\"packs\\/basic-lightbox.zip\",\"uid\":\"e4b025b300b1a8f417d04eb80113fac2\",\"img\":\"basic-lightbox\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"325\":{\"id\":\"341\",\"title\":\"Nature Slider\",\"alias\":\"nature-slider\",\"zip\":\"nature-slider.zip\",\"uid\":\"eef1a4584ec1c3b8c26c305cca44e805\",\"img\":\"nature-slider\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/nature-explorer-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-liquideffect-addon\\\\\\/revslider-liquideffect-addon.php\\\",\\\"name\\\":\\\"Distortion Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"326\":{\"id\":\"342\",\"title\":\"Art Gallery\",\"alias\":\"art-gallery\",\"zip\":\"art-gallery.zip\",\"uid\":\"b8c5095ae3407337e6e5b2a8515e7d6e\",\"img\":\"art-gallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/art-gallery-slider-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.2.22\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A modern slider with large, geometric elements and interesting mask animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"327\":{\"id\":\"343\",\"title\":\"Construction Company\",\"alias\":\"construction-company-website\",\"zip\":\"\",\"uid\":\"construction-company-website-package\",\"img\":\"packages\\/construction_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"328\":{\"id\":\"344\",\"title\":\"Construction Header\",\"alias\":\"Construction-Header\",\"zip\":\"packs\\/Construction-Header.zip\",\"uid\":\"5c77de774b8f5487c1276c4a7b3dc80c\",\"img\":\"Construction-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"329\":{\"id\":\"345\",\"title\":\"Construction Home\",\"alias\":\"Construction-Home\",\"zip\":\"packs\\/Construction-Home.zip\",\"uid\":\"fcb277f0c07dad270d2a7cef4431bef8\",\"img\":\"Construction-Home\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"330\":{\"id\":\"346\",\"title\":\"Construction Projects\",\"alias\":\"Construction-Projects\",\"zip\":\"packs\\/Construction-Projects.zip\",\"uid\":\"0c847173c3739f79778dc2c0fc9704e4\",\"img\":\"Construction-Projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"331\":{\"id\":\"347\",\"title\":\"Construction History\",\"alias\":\"Construction-History\",\"zip\":\"packs\\/Construction-History.zip\",\"uid\":\"758da120c4b6c5606692faf0aa43aac6\",\"img\":\"Construction-History\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"332\":{\"id\":\"348\",\"title\":\"Construction Services\",\"alias\":\"Construction-Services\",\"zip\":\"packs\\/Construction-Services.zip\",\"uid\":\"5ad5b841c1d89e97ddbf972c8b11abd4\",\"img\":\"Construction-Services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"333\":{\"id\":\"349\",\"title\":\"Construction Contacts\",\"alias\":\"Construction-Contacts\",\"zip\":\"packs\\/Construction-Contacts.zip\",\"uid\":\"b8c3c34046bb91ebb243e4da64745d37\",\"img\":\"Construction-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">If you want to setup the full website example as seen in the preview, please follow the <a href=\\\"https:\\/\\/www.themepunch.com\\/faq\\/setup-content-blocks-template\\/\\\" target=\\\"_blank\\\">Content Blocks instructions here<\\/a>.<br><br>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"334\":{\"id\":\"350\",\"title\":\"Classic Cars Evolution\",\"alias\":\"Classic-Cars-Evolution\",\"zip\":\"Classic-Cars-Evolution.zip\",\"uid\":\"7061757f128fd624b0227715dab73b74\",\"img\":\"Classic-Cars-Evolution\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/classic-cars-before-after-hero\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-beforeafter-addon\\\\\\/revslider-beforeafter-addon.php\\\",\\\"name\\\":\\\"Before After AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"335\":{\"id\":\"351\",\"title\":\"404 Error Space Theme\",\"alias\":\"404-Error-Space-Theme\",\"zip\":\"404-Error-Space-Theme.zip\",\"uid\":\"6412adc7ec025826328e40e552a14e1e\",\"img\":\"404-Error-Space-Theme\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/404-error-page\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"336\":{\"id\":\"352\",\"title\":\"Landing Page\",\"alias\":\"landing-page-website\",\"zip\":\"\",\"uid\":\"landing-page-website-package\",\"img\":\"packages\\/lp_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"337\":{\"id\":\"353\",\"title\":\"Landing Page Hero\",\"alias\":\"landing-page-hero\",\"zip\":\"packs\\/landing-page-hero.zip\",\"uid\":\"d328635caa20da7ee8a3ab687f8656ff\",\"img\":\"landing-page-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"338\":{\"id\":\"354\",\"title\":\"Landing Page Features\",\"alias\":\"landing-page-features\",\"zip\":\"packs\\/landing-page-features.zip\",\"uid\":\"6552bc72abace10918a64866d9bb79c1\",\"img\":\"landing-page-features\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"339\":{\"id\":\"355\",\"title\":\"Landing Page Callout\",\"alias\":\"landing-page-callout\",\"zip\":\"packs\\/landing-page-callout.zip\",\"uid\":\"c5b101ea5471e7409ae7effa8d45fbcf\",\"img\":\"landing-page-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"340\":{\"id\":\"356\",\"title\":\"Landing Page Content\",\"alias\":\"landing-page-content\",\"zip\":\"packs\\/landing-page-content.zip\",\"uid\":\"34da8057a6bb3677c9adf9f18ffc6cf0\",\"img\":\"landing-page-content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"341\":{\"id\":\"357\",\"title\":\"Landing Page Testimonials\",\"alias\":\"landing-page-testimonials\",\"zip\":\"packs\\/landing-page-testimonials.zip\",\"uid\":\"a83606e311cd5115422d86f04890cbf1\",\"img\":\"landing-page-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"342\":{\"id\":\"358\",\"title\":\"Landing Page Call to Action\",\"alias\":\"landing-page-call-to-action\",\"zip\":\"packs\\/landing-page-call-to-action.zip\",\"uid\":\"adfb456b27fa7eb6b1415d8f80836f05\",\"img\":\"landing-page-call-to-action\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"343\":{\"id\":\"359\",\"title\":\"Landing Page Help\",\"alias\":\"landing-page-help\",\"zip\":\"packs\\/landing-page-help.zip\",\"uid\":\"ca502431f9b7f6249d99b02464de2dd7\",\"img\":\"landing-page-help\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"344\":{\"id\":\"360\",\"title\":\"Landing Page Footer\",\"alias\":\"landing-page-footer\",\"zip\":\"packs\\/landing-page-footer.zip\",\"uid\":\"2a6afc371dbd60cb117f8a0f5d09eac9\",\"img\":\"landing-page-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"345\":{\"id\":\"361\",\"title\":\"Landing Page Price Modal\",\"alias\":\"landing-page-price-modal\",\"zip\":\"packs\\/landing-page-price-modal.zip\",\"uid\":\"a6c5c0430b46dd4e6e68416964a8c54d\",\"img\":\"landing-page-price-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"346\":{\"id\":\"371\",\"title\":\"Corporate Website\",\"alias\":\"corporate-website\",\"zip\":\"\",\"uid\":\"corporate-website-package\",\"img\":\"packages\\/corporate-website.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"347\":{\"id\":\"372\",\"title\":\"Corporate Header\",\"alias\":\"Corporate-Header\",\"zip\":\"packs\\/Corporate-Header.zip\",\"uid\":\"04f868e3812a1681f00ab89580e5d1f8\",\"img\":\"Corporate-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"348\":{\"id\":\"373\",\"title\":\"Corporate Welcome Screen\",\"alias\":\"Corporate-Welcome-Screen\",\"zip\":\"packs\\/Corporate-Welcome-Screen.zip\",\"uid\":\"052afe98ef819f7ace041dbbdb749639\",\"img\":\"Corporate-Welcome-Screen\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"349\":{\"id\":\"374\",\"title\":\"Corporate About\",\"alias\":\"Corporate-About\",\"zip\":\"packs\\/Corporate-About.zip\",\"uid\":\"7bf5f8f6d4cc3016cea86289cb46e5b6\",\"img\":\"Corporate-About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"350\":{\"id\":\"375\",\"title\":\"Corporate Portfolio\",\"alias\":\"Corporate-Portfolio\",\"zip\":\"packs\\/Corporate-Portfolio.zip\",\"uid\":\"612c2bd784fea81392dda1644a3c3cf3\",\"img\":\"Corporate-Portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"351\":{\"id\":\"376\",\"title\":\"Corporate Chart\",\"alias\":\"Corporate-Chart\",\"zip\":\"packs\\/Corporate-Chart.zip\",\"uid\":\"4d27d9b3b2cfcce750e526aafb322a9f\",\"img\":\"Corporate-Chart\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"352\":{\"id\":\"377\",\"title\":\"Corporate News\",\"alias\":\"Corporate-News\",\"zip\":\"packs\\/Corporate-News.zip\",\"uid\":\"bb65ed57a0d4db795d8b738f0a92f2d7\",\"img\":\"Corporate-News\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"353\":{\"id\":\"378\",\"title\":\"Corporate Hiring\",\"alias\":\"Corporate-Hiring\",\"zip\":\"packs\\/Corporate-Hiring.zip\",\"uid\":\"136cf1a91604e819089eb3573a6e100a\",\"img\":\"Corporate-Hiring\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"354\":{\"id\":\"379\",\"title\":\"Corporate Testimonials\",\"alias\":\"Corporate-Testimonials\",\"zip\":\"packs\\/Corporate-Testimonials.zip\",\"uid\":\"b17aec0afdc31e37359cfa406164463c\",\"img\":\"Corporate-Testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"355\":{\"id\":\"380\",\"title\":\"Corporate Store\",\"alias\":\"Corporate-Store\",\"zip\":\"packs\\/Corporate-Store.zip\",\"uid\":\"6240b14620ddc634736716e0cdfdeb31\",\"img\":\"Corporate-Store\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"356\":{\"id\":\"381\",\"title\":\"Corporate Support\",\"alias\":\"Corporate-Support\",\"zip\":\"packs\\/Corporate-Support.zip\",\"uid\":\"9424292a78076ce68c2faf587b26cdad\",\"img\":\"Corporate-Support\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"357\":{\"id\":\"382\",\"title\":\"Corporate Team\",\"alias\":\"Corporate-Team\",\"zip\":\"packs\\/Corporate-Team.zip\",\"uid\":\"4fafe469b5a0a2545625c3f6d7ff3b9e\",\"img\":\"Corporate-Team\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"11\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"358\":{\"id\":\"383\",\"title\":\"Corporate Selected Projects Title\",\"alias\":\"Corporate-Selected-Projects-Title\",\"zip\":\"packs\\/Corporate-Selected-Projects-Title.zip\",\"uid\":\"0ed3c41f51e6bf404c2fe179fa8d8ceb\",\"img\":\"Corporate-Selected-Projects-Title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"12\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"359\":{\"id\":\"384\",\"title\":\"Corporate Selected Projects\",\"alias\":\"Corporate-Selected-Projects\",\"zip\":\"packs\\/Corporate-Selected-Projects.zip\",\"uid\":\"1096c78d5f007f3900228a4092515e2e\",\"img\":\"Corporate-Selected-Projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"13\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"360\":{\"id\":\"385\",\"title\":\"Corporate Clients\",\"alias\":\"Corporate-Clients\",\"zip\":\"packs\\/Corporate-Clients.zip\",\"uid\":\"60fe3a311195bf4dba3e50bd1ab98574\",\"img\":\"Corporate-Clients\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"14\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"361\":{\"id\":\"386\",\"title\":\"Corporate Text Block\",\"alias\":\"Corporate-Text-Block\",\"zip\":\"packs\\/Corporate-Text-Block.zip\",\"uid\":\"93b68bb23d65fd1028b6b5f6d19b85b5\",\"img\":\"Corporate-Text-Block\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"15\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"362\":{\"id\":\"387\",\"title\":\"Corporate Mobile App\",\"alias\":\"Corporate-Mobile-App\",\"zip\":\"packs\\/Corporate-Mobile-App.zip\",\"uid\":\"e592369d233bea673403daa15c6e498a\",\"img\":\"Corporate-Mobile-App\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"16\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"363\":{\"id\":\"388\",\"title\":\"Corporate Contacts\",\"alias\":\"Corporate-Contacts\",\"zip\":\"packs\\/Corporate-Contacts.zip\",\"uid\":\"91ae9488b54b7020f8ae9dfbfd6c563a\",\"img\":\"Corporate-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"17\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"364\":{\"id\":\"389\",\"title\":\"Corporate Footer\",\"alias\":\"Corporate-Footer\",\"zip\":\"packs\\/Corporate-Footer.zip\",\"uid\":\"a01df90af203f06194c1a18745d79861\",\"img\":\"Corporate-Footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"18\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"365\":{\"id\":\"390\",\"title\":\"Corporate Scroll To Top\",\"alias\":\"Corporate-Scroll-To-Top\",\"zip\":\"packs\\/Corporate-Scroll-To-Top.zip\",\"uid\":\"2d68f6e4590a9a445e6eb055dfee88ba\",\"img\":\"Corporate-Scroll-To-Top\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\"><\\/span>\\r\\n<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"19\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"366\":{\"id\":\"402\",\"title\":\"Brutal Website Template\",\"alias\":\"brutal-website-template\",\"zip\":\"\",\"uid\":\"brutal-website-template-package\",\"img\":\"packages\\/brutal-website-template.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"367\":{\"id\":\"403\",\"title\":\"Brutal Menu\",\"alias\":\"brutal-menu\",\"zip\":\"packs\\/brutal-menu.zip\",\"uid\":\"04b21c7aee2479793336e964230d6e3f\",\"img\":\"brutal-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"368\":{\"id\":\"404\",\"title\":\"Brutal Hero\",\"alias\":\"brutal-hero\",\"zip\":\"packs\\/brutal-hero.zip\",\"uid\":\"a342ad01054b97bac7980fdf9e275b34\",\"img\":\"brutal-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"369\":{\"id\":\"405\",\"title\":\"Brutal About\",\"alias\":\"brutal-about\",\"zip\":\"packs\\/brutal-about.zip\",\"uid\":\"a3e1cd2e36c9a783c1932fdafe2e4434\",\"img\":\"brutal-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"370\":{\"id\":\"406\",\"title\":\"Brutal Highlight\",\"alias\":\"brutal-highlight\",\"zip\":\"packs\\/brutal-highlight.zip\",\"uid\":\"b7f8522dcb4636467633bd3b14f4e3e9\",\"img\":\"brutal-highlight\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"371\":{\"id\":\"407\",\"title\":\"Brutal Projects\",\"alias\":\"brutal-projects\",\"zip\":\"packs\\/brutal-projects.zip\",\"uid\":\"1a462e91373042193ca5d623dd8e8a47\",\"img\":\"brutal-projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"372\":{\"id\":\"408\",\"title\":\"Brutal Services\",\"alias\":\"brutal-services\",\"zip\":\"packs\\/brutal-services.zip\",\"uid\":\"cbeeb1e7a5c2842b155fe13acb7c165d\",\"img\":\"brutal-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"373\":{\"id\":\"409\",\"title\":\"Brutal Callout\",\"alias\":\"brutal-callout\",\"zip\":\"packs\\/brutal-callout.zip\",\"uid\":\"31b6dafdb2dfb548152653e60df5a3bc\",\"img\":\"brutal-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"374\":{\"id\":\"410\",\"title\":\"Brutal Footer\",\"alias\":\"brutal-footer\",\"zip\":\"packs\\/brutal-footer.zip\",\"uid\":\"07559f0c574e3dd95b2d40d72cbb01bc\",\"img\":\"brutal-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"375\":{\"id\":\"411\",\"title\":\"Church Website Template\",\"alias\":\"church-website-template\",\"zip\":\"\",\"uid\":\"church-website-template-package\",\"img\":\"packages\\/church-website-template.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"376\":{\"id\":\"412\",\"title\":\"Church Header\",\"alias\":\"Church-Header\",\"zip\":\"packs\\/Church-Header.zip\",\"uid\":\"c14289117e1e2b9ee716fb99146b2e03\",\"img\":\"Church-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"377\":{\"id\":\"413\",\"title\":\"Church Upcoming Events\",\"alias\":\"Church-Upcoming-Events\",\"zip\":\"packs\\/Church-Upcoming-Events.zip\",\"uid\":\"056a26efddae92973fee4ee5cfa75f10\",\"img\":\"Church-Upcoming-Events\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"378\":{\"id\":\"414\",\"title\":\"Church About\",\"alias\":\"Church-About\",\"zip\":\"packs\\/Church-About.zip\",\"uid\":\"8ef133f3f669f06380334a83e27eedbb\",\"img\":\"Church-About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"379\":{\"id\":\"415\",\"title\":\"Church Pastors\",\"alias\":\"Church-Pastors\",\"zip\":\"packs\\/Church-Pastors.zip\",\"uid\":\"715edc0833a753b72350b8c974f86f94\",\"img\":\"Church-Pastors\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"380\":{\"id\":\"416\",\"title\":\"Church Photo Gallery\",\"alias\":\"Church-Photo-Gallery\",\"zip\":\"packs\\/Church-Photo-Gallery.zip\",\"uid\":\"d94808a97149cd5d3b3354a28409ffd7\",\"img\":\"Church-Photo-Gallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"381\":{\"id\":\"417\",\"title\":\"Church Community\",\"alias\":\"Church-Community\",\"zip\":\"packs\\/Church-Community.zip\",\"uid\":\"2244e6a6d7a691653eae2d70765130a7\",\"img\":\"Church-Community\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"382\":{\"id\":\"418\",\"title\":\"Church Sermon\",\"alias\":\"Church-Sermon\",\"zip\":\"packs\\/Church-Sermon.zip\",\"uid\":\"8fedf983bd55fff0f7a16d9f0a7e5408\",\"img\":\"Church-Sermon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"383\":{\"id\":\"419\",\"title\":\"Church Contacts\",\"alias\":\"Church-Contacts\",\"zip\":\"packs\\/Church-Contacts.zip\",\"uid\":\"0b1a6968e75868548fd98e435625c090\",\"img\":\"Church-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"384\":{\"id\":\"420\",\"title\":\"Church Footer\",\"alias\":\"Church-Footer\",\"zip\":\"packs\\/Church-Footer.zip\",\"uid\":\"29756685d3dc49e42edada43e6393b7b\",\"img\":\"Church-Footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"385\":{\"id\":\"421\",\"title\":\"Church Light Website Template\",\"alias\":\"church-light-website-template\",\"zip\":\"\",\"uid\":\"church-light-website-template-package\",\"img\":\"packages\\/church-light-website-template.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"386\":{\"id\":\"422\",\"title\":\"Church Light Header\",\"alias\":\"Church-Light-Header\",\"zip\":\"packs\\/Church-Light-Header.zip\",\"uid\":\"81c00f4b52cf55214de919e3f13121fc\",\"img\":\"Church-Light-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"387\":{\"id\":\"423\",\"title\":\"Church Light Upcoming Events\",\"alias\":\"Church-Light-Upcoming-Events\",\"zip\":\"packs\\/Church-Light-Upcoming-Events.zip\",\"uid\":\"963a49f4be0557ac5f3ee61d256f5bda\",\"img\":\"Church-Light-Upcoming-Events\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"388\":{\"id\":\"424\",\"title\":\"Church Light About\",\"alias\":\"Church-Light-About\",\"zip\":\"packs\\/Church-Light-About.zip\",\"uid\":\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\",\"img\":\"Church-Light-About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"389\":{\"id\":\"425\",\"title\":\"Church Light Pastors\",\"alias\":\"Church-Light-Pastors\",\"zip\":\"packs\\/Church-Light-Pastors.zip\",\"uid\":\"7cc3dec61556e2291d6f38c1ea5e983f\",\"img\":\"Church-Light-Pastors\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"390\":{\"id\":\"426\",\"title\":\"Church Light Photo Gallery\",\"alias\":\"Church-Light-Photo-Gallery\",\"zip\":\"packs\\/Church-Light-Photo-Gallery.zip\",\"uid\":\"9e13100179b9b700b005693eeca57902\",\"img\":\"Church-Light-Photo-Gallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"391\":{\"id\":\"427\",\"title\":\"Church Light Community\",\"alias\":\"Church-Light-Community\",\"zip\":\"packs\\/Church-Light-Community.zip\",\"uid\":\"14fcc0d43d899fd96116bdbc57c7c5ea\",\"img\":\"Church-Light-Community\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"392\":{\"id\":\"428\",\"title\":\"Church Light Sermon\",\"alias\":\"Church-Light-Sermon\",\"zip\":\"packs\\/Church-Light-Sermon.zip\",\"uid\":\"fc30be7e703bc7b235665c36baa80e4e\",\"img\":\"Church-Light-Sermon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"393\":{\"id\":\"429\",\"title\":\"Church Light Contacts\",\"alias\":\"Church-Light-Contacts\",\"zip\":\"packs\\/Church-Light-Contacts.zip\",\"uid\":\"ed83d8fa63ecb59cf42656068ecf8d25\",\"img\":\"Church-Light-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"394\":{\"id\":\"430\",\"title\":\"Church Light Footer\",\"alias\":\"Church-Light-Footer\",\"zip\":\"packs\\/Church-Light-Footer.zip\",\"uid\":\"a168772865fd5dcf6229c9c6a49dff73\",\"img\":\"Church-Light-Footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"395\":{\"id\":\"431\",\"title\":\"Rockable Website Template\",\"alias\":\"rockable-website-template\",\"zip\":\"\",\"uid\":\"rockable-website-template-package\",\"img\":\"packages\\/rockable-website-template.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"396\":{\"id\":\"432\",\"title\":\"Rockable Menu\",\"alias\":\"rockable-menu\",\"zip\":\"packs\\/rockable-menu.zip\",\"uid\":\"92d18f7ff38f22ff411a4ef4d9f54934\",\"img\":\"rockable-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"397\":{\"id\":\"433\",\"title\":\"Rockable Hero\",\"alias\":\"rockable-hero\",\"zip\":\"packs\\/rockable-hero.zip\",\"uid\":\"ba16b28d6bde95910cbce572bb251208\",\"img\":\"rockable-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"398\":{\"id\":\"434\",\"title\":\"Rockable Lineup\",\"alias\":\"rockable-lineup\",\"zip\":\"packs\\/rockable-lineup.zip\",\"uid\":\"6631980112805533a0d328c37e56adbd\",\"img\":\"rockable-lineup\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"399\":{\"id\":\"435\",\"title\":\"Rockable Lineup 2\",\"alias\":\"rockable-lineup-2\",\"zip\":\"packs\\/rockable-lineup-2.zip\",\"uid\":\"98bc41d982dc478edabff4aa99461dbc\",\"img\":\"rockable-lineup-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"400\":{\"id\":\"436\",\"title\":\"Rockable Gallery Title\",\"alias\":\"rockable-gallery-title\",\"zip\":\"packs\\/rockable-gallery-title.zip\",\"uid\":\"da43a76f5bc77aa6efe158b00ab7cf0d\",\"img\":\"rockable-gallery-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"401\":{\"id\":\"437\",\"title\":\"Rockable Gallery\",\"alias\":\"rockable-gallery\",\"zip\":\"packs\\/rockable-gallery.zip\",\"uid\":\"c12a144d6860bcf24e91d5b980ac22f1\",\"img\":\"rockable-gallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"402\":{\"id\":\"438\",\"title\":\"Rockable Sponsors\",\"alias\":\"rockable-sponsors\",\"zip\":\"packs\\/rockable-sponsors.zip\",\"uid\":\"1e40d4a810c23f8d5fe5cd5ca31ee20d\",\"img\":\"rockable-sponsors\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"403\":{\"id\":\"439\",\"title\":\"Rockable Footer\",\"alias\":\"rockable-footer\",\"zip\":\"packs\\/rockable-footer.zip\",\"uid\":\"a4a9952d5e56fc14366155e8ebfa432a\",\"img\":\"rockable-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"404\":{\"id\":\"440\",\"title\":\"Rockable Detail Modal\",\"alias\":\"rockable-detail-modal\",\"zip\":\"packs\\/rockable-detail-modal.zip\",\"uid\":\"b51d918203ff7975a144a9f1be09f31b\",\"img\":\"rockable-detail-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"405\":{\"id\":\"441\",\"title\":\"Rockable Detail Modal 2\",\"alias\":\"rockable-detail-modal-2\",\"zip\":\"packs\\/rockable-detail-modal-2.zip\",\"uid\":\"dcf51ebb3d4a1dec94748a1e016c5ef7\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"406\":{\"id\":\"442\",\"title\":\"Real Estate Showcase Slider\",\"alias\":\"real-estate-showcase-slider\",\"zip\":\"Real-Estate-Showcase-Slider.zip\",\"uid\":\"486b2bbe296722e70421731e3c05711b\",\"img\":\"Real-Estate-Showcase-Slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/real-estate-showcase-slider\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">An elegant showcase for your real estate & realtor website. Flexible and customizable.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"407\":{\"id\":\"443\",\"title\":\"Isometric Slider\",\"alias\":\"isometric-slider\",\"zip\":\"isometric-slider.zip\",\"uid\":\"fb06051fcf6649a44f2292044e414a36\",\"img\":\"isometric-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/isometric-slider\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A colorful, isometric slider template with fully customizable colors and screen content.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"408\":{\"id\":\"444\",\"title\":\"Woo Commerce Slider Static\",\"alias\":\"woo-commerce-slider-static\",\"zip\":\"\",\"uid\":\"woo-commerce-slider-static\",\"img\":\"packages\\/woo-commerce-slider-static.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/woo-commerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Woo Commerce Slider Static\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"35\",\"installed\":false},\"409\":{\"id\":\"445\",\"title\":\"E-Commerce Slider\",\"alias\":\"E-Commerce-Slider\",\"zip\":\"packs\\/E-Commerce-Slider.zip\",\"uid\":\"1533cfd83c2ae122f23074e1ed77f256\",\"img\":\"E-Commerce-Slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/woo-commerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Woo Commerce Slider Static\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"35\",\"installed\":false},\"410\":{\"id\":\"446\",\"title\":\"E-Commerce Slider Modal\",\"alias\":\"E-Commerce-Slider-Modal\",\"zip\":\"packs\\/E-Commerce-Slider-Modal.zip\",\"uid\":\"825e05c3967515b92a75da017c68a863\",\"img\":\"E-Commerce-Slider-Modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/woo-commerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Woo Commerce Slider Static\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"35\",\"installed\":false},\"411\":{\"id\":\"447\",\"title\":\"Woo Commerce Slider Dynamic\",\"alias\":\"Woo-Commerce-Slider-Dynamic\",\"zip\":\"Woo-Commerce-Slider-Dynamic.zip\",\"uid\":\"b8e2c64f3739e552c563c48c59f20fe7\",\"img\":\"Woo-Commerce-Slider-Dynamic\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/woo-commerce-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"412\":{\"id\":\"448\",\"title\":\"Blooming Event Florist Template\",\"alias\":\"blooming-event-florist-template\",\"zip\":\"\",\"uid\":\"blooming-event-florist-template-package\",\"img\":\"packages\\/blooming-event-florist-template-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"413\":{\"id\":\"449\",\"title\":\"Blooming Header\",\"alias\":\"blooming-header\",\"zip\":\"packs\\/blooming-header.zip\",\"uid\":\"aa2ee34fd8ed018945ba64e6913810e4\",\"img\":\"blooming-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"414\":{\"id\":\"450\",\"title\":\"Blooming About\",\"alias\":\"blooming-about\",\"zip\":\"packs\\/blooming-about.zip\",\"uid\":\"dd7095e46fab2eb475d00480fd17a6ec\",\"img\":\"blooming-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"415\":{\"id\":\"451\",\"title\":\"Blooming Portfolio\",\"alias\":\"blooming-portfolio\",\"zip\":\"packs\\/blooming-portfolio.zip\",\"uid\":\"c72ddcbb07b62982b8c21328a6383e22\",\"img\":\"blooming-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"416\":{\"id\":\"452\",\"title\":\"Blooming Wedding Title\",\"alias\":\"blooming-wedding-title\",\"zip\":\"packs\\/blooming-wedding-title.zip\",\"uid\":\"4fcfb0b99289c12d014c67306bb7687b\",\"img\":\"blooming-wedding-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"417\":{\"id\":\"453\",\"title\":\"Blooming Wedding Carousel\",\"alias\":\"blooming-wedding-carousel\",\"zip\":\"packs\\/blooming-wedding-carousel.zip\",\"uid\":\"1d1bb979dbfca8ba9d43da1c0f665339\",\"img\":\"blooming-wedding-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"418\":{\"id\":\"454\",\"title\":\"Blooming Wedding Text\",\"alias\":\"blooming-wedding-text\",\"zip\":\"packs\\/blooming-wedding-text.zip\",\"uid\":\"326f2793294a739dd3aac3cc45332df8\",\"img\":\"blooming-wedding-text\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"419\":{\"id\":\"455\",\"title\":\"Blooming Parties Title\",\"alias\":\"blooming-parties-title\",\"zip\":\"packs\\/blooming-parties-title.zip\",\"uid\":\"b47aae1b368d3c3d9017f260e6c6a547\",\"img\":\"blooming-parties-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"420\":{\"id\":\"456\",\"title\":\"Blooming Parties Carousel\",\"alias\":\"blooming-parties-carousel\",\"zip\":\"packs\\/blooming-parties-carousel.zip\",\"uid\":\"9f90a9da7b017aeee7f3b608cda066e6\",\"img\":\"blooming-parties-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"421\":{\"id\":\"457\",\"title\":\"Blooming Parties Text\",\"alias\":\"blooming-parties-text\",\"zip\":\"packs\\/blooming-parties-text.zip\",\"uid\":\"66a47346cc639b8b9b9b5dfa1521b6ef\",\"img\":\"blooming-parties-text\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"422\":{\"id\":\"458\",\"title\":\"Blooming Funeral Title\",\"alias\":\"blooming-funeral-title\",\"zip\":\"packs\\/blooming-funeral-title.zip\",\"uid\":\"e9e77134472c33c56be442073f29d1fd\",\"img\":\"blooming-funeral-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"423\":{\"id\":\"459\",\"title\":\"Blooming Funeral Slider\",\"alias\":\"blooming-funeral-slider\",\"zip\":\"packs\\/blooming-funeral-slider.zip\",\"uid\":\"d15090841c25c7c8f0e1b0987c0c0887\",\"img\":\"blooming-funeral-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"11\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"424\":{\"id\":\"460\",\"title\":\"Blooming Funeral Text\",\"alias\":\"blooming-funeral-text\",\"zip\":\"packs\\/blooming-funeral-text.zip\",\"uid\":\"d7c80e246f31e3d2f4e5dc1656f133cc\",\"img\":\"blooming-funeral-text\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"12\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"425\":{\"id\":\"461\",\"title\":\"Blooming Contact\",\"alias\":\"blooming-contact\",\"zip\":\"packs\\/blooming-contact.zip\",\"uid\":\"54280182bca86443e2648b3146f41e47\",\"img\":\"blooming-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"13\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"426\":{\"id\":\"462\",\"title\":\"Particle Hero\",\"alias\":\"particle-hero\",\"zip\":\"particle-hero.zip\",\"uid\":\"3f422f4807bf9ef4cb15dade515dad00\",\"img\":\"particle-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide6\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A Hero header module using the Particle Effect Add-On.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"427\":{\"id\":\"463\",\"title\":\"Bubble Morph Hero\",\"alias\":\"bubble-morph-hero\",\"zip\":\"bubble-morph-hero.zip\",\"uid\":\"b47e6bcc1ae80393ff3f7388ed3b9f8f\",\"img\":\"bubble-morph-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide5\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A Hero header module using the Bubble Morph Add-On.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"428\":{\"id\":\"464\",\"title\":\"Parallax Hero\",\"alias\":\"parallax-hero\",\"zip\":\"parallax-hero.zip\",\"uid\":\"290e86534326ee118e96ae7ce0538fa2\",\"img\":\"parallax-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide4\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A parallax hero module with mouse move interaction.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"429\":{\"id\":\"465\",\"title\":\"Video Hero\",\"alias\":\"video-hero\",\"zip\":\"video-hero.zip\",\"uid\":\"f9e280015d3408bb0482e13fe753da8f\",\"img\":\"video-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide3\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A simple Hero header module with HTML5 video.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"430\":{\"id\":\"466\",\"title\":\"Ken Burns Hero\",\"alias\":\"ken-burns-hero\",\"zip\":\"ken-burns-hero.zip\",\"uid\":\"d5f89e5f5b3991b995e2bfeb50cfe9f8\",\"img\":\"ken-burns-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide2\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A simple image background hero header module with a subtle Ken Burns effect.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"431\":{\"id\":\"467\",\"title\":\"Basic Hero Collection\",\"alias\":\"basic-hero-collection\",\"zip\":\"basic-hero-collection.zip\",\"uid\":\"ff625c65e8aab4689fa56d5652279d51\",\"img\":\"basic-hero-collection\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"432\":{\"id\":\"468\",\"title\":\"Launching Very Soon\",\"alias\":\"launching-very-soon\",\"zip\":\"launching-very-soon.zip\",\"uid\":\"2da45cf2d9bec07e7183b3f7777986b9\",\"img\":\"launching-very-soon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/launching-soon-countdown\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Rocket BOOST! A beautifully animated launching soon countdown module using our \\\"Coming Soon\\\" Add-On.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-maintenance-addon\\\\\\/revslider-maintenance-addon.php\\\",\\\"name\\\":\\\"Coming Soon & Maintenance AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/revslider-doc\\\\\\/add-coming-soon-maintenance\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"433\":{\"id\":\"469\",\"title\":\"Under Construction\",\"alias\":\"Under-Construction\",\"zip\":\"Under-Construction.zip\",\"uid\":\"4b12f9a82a5b48d45a707df93406eb5b\",\"img\":\"Under-Construction\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/under-construction\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">You will love this animated under construction landing page using our \\\"Coming Soon\\\" Add-On.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-maintenance-addon\\\\\\/revslider-maintenance-addon.php\\\",\\\"name\\\":\\\"Coming Soon & Maintenance AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/revslider-doc\\\\\\/add-coming-soon-maintenance\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"434\":{\"id\":\"470\",\"title\":\"Particle Effect\",\"alias\":\"Particle-Effect\",\"zip\":\"Particle-Effect.zip\",\"uid\":\"66cf4e514e83a6984903694fd587edb6\",\"img\":\"Particle-Effect\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/snow-particle-scene\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"435\":{\"id\":\"471\",\"title\":\"Particle Effect 2\",\"alias\":\"Particle-Effect-2\",\"zip\":\"Particle-Effect-2.zip\",\"uid\":\"303337c29a97a816ccecca7e5f0b5e20\",\"img\":\"Particle-Effect-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/cyber-particle-effect\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Amaze your website visitors with the cyber particle effect for Slider Revolution!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"436\":{\"id\":\"472\",\"title\":\"Stark Website Template\",\"alias\":\"stark-website-template\",\"zip\":\"\",\"uid\":\"stark-website-template-package\",\"img\":\"packages\\/stark-website-template-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"437\":{\"id\":\"473\",\"title\":\"Stark Menu\",\"alias\":\"stark-menu\",\"zip\":\"packs\\/stark-menu.zip\",\"uid\":\"bb31150df180e784d76a1f5ea306bf05\",\"img\":\"stark-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"438\":{\"id\":\"474\",\"title\":\"Stark Header\",\"alias\":\"stark-header\",\"zip\":\"packs\\/stark-header.zip\",\"uid\":\"62bfca01bf6e33cfad81d8df06498299\",\"img\":\"stark-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"439\":{\"id\":\"475\",\"title\":\"Stark Content\",\"alias\":\"stark-content\",\"zip\":\"packs\\/stark-content.zip\",\"uid\":\"4577ca760133eb5d894c46f212f6eefb\",\"img\":\"stark-content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.2.22\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\\\" zindex=\\\"6\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"440\":{\"id\":\"476\",\"title\":\"Stark Carousel\",\"alias\":\"stark-carousel\",\"zip\":\"packs\\/stark-carousel.zip\",\"uid\":\"de63336d333eeff10eccfd5d9741e6c9\",\"img\":\"stark-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\\\" zindex=\\\"1\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"441\":{\"id\":\"477\",\"title\":\"Stark Portfolio\",\"alias\":\"stark-portfolio\",\"zip\":\"packs\\/stark-portfolio.zip\",\"uid\":\"99fcf3df65f8471fe30bec1bf0c2350d\",\"img\":\"stark-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.2.22\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\\\" zindex=\\\"5\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"442\":{\"id\":\"478\",\"title\":\"Stark Portfolio Detail\",\"alias\":\"stark-portfolio-detail\",\"zip\":\"packs\\/stark-portfolio-detail.zip\",\"uid\":\"7484fc54f81daec07c93e992216310ce\",\"img\":\"stark-portfolio-detail\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"443\":{\"id\":\"479\",\"title\":\"Stark Contact\",\"alias\":\"stark-contact\",\"zip\":\"packs\\/stark-contact.zip\",\"uid\":\"8d704226b7093123a9d9faf424da6c35\",\"img\":\"stark-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\\\" zindex=\\\"2\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"444\":{\"id\":\"480\",\"title\":\"Stark Footer\",\"alias\":\"stark-footer\",\"zip\":\"packs\\/stark-footer.zip\",\"uid\":\"e7132dc158e7dcdb4ef5b3a1aa00208a\",\"img\":\"stark-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.2.22\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\\\" zindex=\\\"3\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"445\":{\"id\":\"481\",\"title\":\"Stark Newsletter\",\"alias\":\"stark-newsletter\",\"zip\":\"packs\\/stark-newsletter.zip\",\"uid\":\"bb76ddd68dbe6bda5ece7e4227a51413\",\"img\":\"stark-newsletter\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"usage=\\\"modal\\\" modal=\\\"s:#contact;\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"446\":{\"id\":\"482\",\"title\":\"Big Summer Sale\",\"alias\":\"big-summer-sale\",\"zip\":\"big-summer-sale.zip\",\"uid\":\"a6779fa7109763209d234f9cf2e766c6\",\"img\":\"big-summer-sale\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/big-summer-sale-shop-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"447\":{\"id\":\"483\",\"title\":\"Traveller Carousel\",\"alias\":\"traveller-carousel\",\"zip\":\"traveller-carousel.zip\",\"uid\":\"185344ed6236bea2906a79035d1d5702\",\"img\":\"traveller-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/travel-blog-carousel\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A travel blog carousel with interesting parallax and ken burns effects!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Note that the content visible on all slides can be edited on the \\\"global layers\\\" slide.<br\\/>Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"448\":{\"id\":\"484\",\"title\":\"Project Carousel\",\"alias\":\"project-carousel\",\"zip\":\"project-carousel.zip\",\"uid\":\"49c85ad406da943bdd25f08fd6496748\",\"img\":\"project-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/project-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A project carousel with images and texts that can be customized easily!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"449\":{\"id\":\"485\",\"title\":\"News Carousel\",\"alias\":\"news-carousel\",\"zip\":\"news-carousel.zip\",\"uid\":\"76f5b939150092a30038f161084140ae\",\"img\":\"news-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/news-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A news carousel with images and texts that can be customized easily!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"450\":{\"id\":\"486\",\"title\":\"Story Blocks Website Template\",\"alias\":\"story-blocks-website-template\",\"zip\":\"\",\"uid\":\"story-blocks-website-template-package\",\"img\":\"packages\\/story-blocks-website-template-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"451\":{\"id\":\"487\",\"title\":\"Story Menu\",\"alias\":\"story-menu\",\"zip\":\"packs\\/story-menu.zip\",\"uid\":\"1f2f7cd91480f15cff8e7100f788c650\",\"img\":\"story-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"452\":{\"id\":\"488\",\"title\":\"Story Header\",\"alias\":\"story-header\",\"zip\":\"packs\\/story-header.zip\",\"uid\":\"e1a5ad5018a24ccdc71c2863edfe775e\",\"img\":\"story-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"453\":{\"id\":\"489\",\"title\":\"Story Block 1\",\"alias\":\"story-block-1\",\"zip\":\"packs\\/story-block-1.zip\",\"uid\":\"2a9fee97dcf477e36d048af8a902f47a\",\"img\":\"story-block-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"454\":{\"id\":\"490\",\"title\":\"Story Content 1\",\"alias\":\"story-content-1\",\"zip\":\"packs\\/story-content-1.zip\",\"uid\":\"6773614bbce543b83a0d2b2ad8facc96\",\"img\":\"story-content-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"455\":{\"id\":\"491\",\"title\":\"Story Block 2\",\"alias\":\"story-block-2\",\"zip\":\"packs\\/story-block-2.zip\",\"uid\":\"2e708e3cebab57ca20b228ffba426ce7\",\"img\":\"story-block-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"456\":{\"id\":\"492\",\"title\":\"Story Block 3\",\"alias\":\"story-block-3\",\"zip\":\"packs\\/story-block-3.zip\",\"uid\":\"7156cf069f65644faf90122dab451231\",\"img\":\"story-block-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"457\":{\"id\":\"493\",\"title\":\"Story Content 2\",\"alias\":\"story-content-2\",\"zip\":\"packs\\/story-content-2.zip\",\"uid\":\"1223cd77d1f36d69e69ce50223e16ea7\",\"img\":\"story-content-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"458\":{\"id\":\"494\",\"title\":\"Story Block 4\",\"alias\":\"story-block-4\",\"zip\":\"packs\\/story-block-4.zip\",\"uid\":\"85ac48e8e8231d2c38206cba4e7ebb68\",\"img\":\"story-block-4\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"459\":{\"id\":\"495\",\"title\":\"Story Content 3\",\"alias\":\"story-content-3\",\"zip\":\"packs\\/story-content-3.zip\",\"uid\":\"82cac52f3ba79c0559fe0ad0cdf9d3b2\",\"img\":\"story-content-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"460\":{\"id\":\"496\",\"title\":\"Animated Mini Website\",\"alias\":\"mini-website\",\"zip\":\"mini-website.zip\",\"uid\":\"cc6c0a3b0f933a88c43e2be0fa397c1c\",\"img\":\"mini-website\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/mini-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"461\":{\"id\":\"497\",\"title\":\"Food Delivery Hero\",\"alias\":\"food-delivery\",\"zip\":\"food-delivery.zip\",\"uid\":\"992e9b22ff43227a655eea341835d04c\",\"img\":\"food-delivery\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-delivery-hero\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"462\":{\"id\":\"498\",\"title\":\"Slider With Illustrations\",\"alias\":\"slider-with-illustrations\",\"zip\":\"slider-with-illustrations.zip\",\"uid\":\"ebc24280b669f26734c7fdd8b5683e9f\",\"img\":\"slider-with-illustrations\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/slider-with-illustrations\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"463\":{\"id\":\"499\",\"title\":\"Zen Technology Website Template\",\"alias\":\"zen-technology-website-template\",\"zip\":\"\",\"uid\":\"zen-technology-website-template-package\",\"img\":\"packages\\/zen-technology-website-template-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"464\":{\"id\":\"500\",\"title\":\"Zen Menu\",\"alias\":\"zen-menu\",\"zip\":\"packs\\/zen-menu.zip\",\"uid\":\"3b53d755058b75fa6172510dcca2f2bb\",\"img\":\"zen-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"465\":{\"id\":\"501\",\"title\":\"Zen Header\",\"alias\":\"zen-header\",\"zip\":\"packs\\/zen-header.zip\",\"uid\":\"13d3cdde05308616fda7e2920a29e006\",\"img\":\"zen-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"466\":{\"id\":\"502\",\"title\":\"Zen About\",\"alias\":\"zen-about\",\"zip\":\"packs\\/zen-about.zip\",\"uid\":\"d50d4f9b43e025fa99503b9a4eec6551\",\"img\":\"zen-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"467\":{\"id\":\"503\",\"title\":\"Zen Features\",\"alias\":\"zen-features\",\"zip\":\"packs\\/zen-features.zip\",\"uid\":\"f4f7f500fae57b1b55adace13f030778\",\"img\":\"zen-features\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"468\":{\"id\":\"504\",\"title\":\"Zen Video\",\"alias\":\"zen-video\",\"zip\":\"packs\\/zen-video.zip\",\"uid\":\"fa83df1b45b795174770b1b0155e89f3\",\"img\":\"zen-video\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"469\":{\"id\":\"505\",\"title\":\"Zen Pricing\",\"alias\":\"zen-pricing\",\"zip\":\"packs\\/zen-pricing.zip\",\"uid\":\"921f8e5c156d9027f6ae8f1c5e426251\",\"img\":\"zen-pricing\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"470\":{\"id\":\"506\",\"title\":\"Zen Testimonials Title\",\"alias\":\"zen-testimonials-title\",\"zip\":\"packs\\/zen-testimonials-title.zip\",\"uid\":\"d9aeeb596c0455ddd564a60a2d449b17\",\"img\":\"zen-testimonials-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"471\":{\"id\":\"507\",\"title\":\"Zen Testimonials\",\"alias\":\"zen-testimonials\",\"zip\":\"packs\\/zen-testimonials.zip\",\"uid\":\"5a0e0141599c63828e4b99e3bc863366\",\"img\":\"zen-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"472\":{\"id\":\"508\",\"title\":\"Zen Footer\",\"alias\":\"zen-footer\",\"zip\":\"packs\\/zen-footer.zip\",\"uid\":\"47fb8604e2aafa8cfc97f5af75fda911\",\"img\":\"zen-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"473\":{\"id\":\"509\",\"title\":\"Paintbrush Effect Add-on\",\"alias\":\"Paintbrush-Effect\",\"zip\":\"Paintbrush-Effect.zip\",\"uid\":\"b934d1376df026f0ff45447de17b5ee9\",\"img\":\"Paintbrush-Effect\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/paintbrush-effect-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-paintbrush-addon\\\\\\/revslider-paintbrush-addon.php\\\",\\\"name\\\":\\\"Paintbrush AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"474\":{\"id\":\"510\",\"title\":\"Photographer Website Template\",\"alias\":\"photographer-website-template\",\"zip\":\"\",\"uid\":\"photographer-website-template-package\",\"img\":\"packages\\/photographer-website-template-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"475\":{\"id\":\"511\",\"title\":\"Photographer Header\",\"alias\":\"Photographer-Header\",\"zip\":\"packs\\/Photographer-Header.zip\",\"uid\":\"22de8b3b1eeca5d0d1087791a28cc641\",\"img\":\"Photographer-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"476\":{\"id\":\"512\",\"title\":\"Photographer Welcome Screen\",\"alias\":\"Photographer-Welcome-Screen\",\"zip\":\"packs\\/Photographer-Welcome-Screen.zip\",\"uid\":\"8de63df079ad8b7c0aa7bf164bd5fd8f\",\"img\":\"Photographer-Welcome-Screen\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"477\":{\"id\":\"513\",\"title\":\"Photographer Showcase\",\"alias\":\"Photographer-Showcase\",\"zip\":\"packs\\/Photographer-Showcase.zip\",\"uid\":\"8b2c7a1541465f77e829a9ac58926359\",\"img\":\"Photographer-Showcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"478\":{\"id\":\"514\",\"title\":\"Photographer Portfolio\",\"alias\":\"Photographer-Portfolio\",\"zip\":\"packs\\/Photographer-Portfolio.zip\",\"uid\":\"ba5cc502a9505725ef169eaf4852d10f\",\"img\":\"Photographer-Portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"479\":{\"id\":\"515\",\"title\":\"Photographer Contacts\",\"alias\":\"Photographer-Contacts\",\"zip\":\"packs\\/Photographer-Contacts.zip\",\"uid\":\"6ac142733cd260b5d5d3cdce30885074\",\"img\":\"Photographer-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"480\":{\"id\":\"516\",\"title\":\"Photographer Footer\",\"alias\":\"Photographer-Footer\",\"zip\":\"packs\\/Photographer-Footer.zip\",\"uid\":\"5fae568a988d072fb14b66cc2732ea46\",\"img\":\"Photographer-Footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"481\":{\"id\":\"517\",\"title\":\"Photographer Modal\",\"alias\":\"Photographer-Modal\",\"zip\":\"packs\\/Photographer-Modal.zip\",\"uid\":\"e6b47a765ad19bce4726540ff7211c07\",\"img\":\"Photographer-Modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"482\":{\"id\":\"518\",\"title\":\"Black Friday Scroll Video\",\"alias\":\"black-friday-scroll-video\",\"zip\":\"black-friday-scroll-video.zip\",\"uid\":\"a6a4ab2e2f703aaee0a1e6121881bdd8\",\"img\":\"black-friday-scroll-video\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/black-friday-scroll-video\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-scrollvideo-addon\\\\\\/revslider-scrollvideo-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Scroll Video Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"483\":{\"id\":\"519\",\"title\":\"Charity Non-Profit-Website\",\"alias\":\"charity-non-profit-website\",\"zip\":\"\",\"uid\":\"charity-non-profit-website\",\"img\":\"packages\\/charity-non-profit-website-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"484\":{\"id\":\"520\",\"title\":\"Charity Menu\",\"alias\":\"charity-menu\",\"zip\":\"packs\\/charity-menu.zip\",\"uid\":\"77794a39041c7f128de3b5ad9b8e7d0d\",\"img\":\"charity-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"485\":{\"id\":\"521\",\"title\":\"Charity Header\",\"alias\":\"charity-header\",\"zip\":\"packs\\/charity-header.zip\",\"uid\":\"36096787d4ed62942cbd48f6a57e9d4f\",\"img\":\"charity-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"486\":{\"id\":\"522\",\"title\":\"Charity Mission\",\"alias\":\"charity-mission\",\"zip\":\"packs\\/charity-mission.zip\",\"uid\":\"8c5cd67e3eb51c0ca3e571408ac8e97b\",\"img\":\"charity-mission\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"487\":{\"id\":\"523\",\"title\":\"Charity Funds\",\"alias\":\"charity-funds\",\"zip\":\"packs\\/charity-funds.zip\",\"uid\":\"10da554c7529ef91965e1618a04b410b\",\"img\":\"charity-funds\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"488\":{\"id\":\"524\",\"title\":\"Charity Success\",\"alias\":\"charity-success\",\"zip\":\"packs\\/charity-success.zip\",\"uid\":\"0c35448c1905272606e87447886a348e\",\"img\":\"charity-success\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"489\":{\"id\":\"525\",\"title\":\"Charity Stories\",\"alias\":\"charity-stories\",\"zip\":\"packs\\/charity-stories.zip\",\"uid\":\"f277f145d9f9c3f0033bb8ceffeb4c9f\",\"img\":\"charity-stories\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"490\":{\"id\":\"526\",\"title\":\"Charity Worldmap\",\"alias\":\"charity-worldmap\",\"zip\":\"packs\\/charity-worldmap.zip\",\"uid\":\"9e00cbac269b92cb24fd3230297f4685\",\"img\":\"charity-worldmap\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"491\":{\"id\":\"527\",\"title\":\"Charity Large Image\",\"alias\":\"charity-large-image\",\"zip\":\"packs\\/charity-large-image.zip\",\"uid\":\"fa927036c2b14622832106fa987bc8e7\",\"img\":\"charity-large-image\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"492\":{\"id\":\"528\",\"title\":\"Charity Sponsors\",\"alias\":\"charity-sponsors\",\"zip\":\"packs\\/charity-sponsors.zip\",\"uid\":\"efd087bc3fa3915139af9e93d47ee295\",\"img\":\"charity-sponsors\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"493\":{\"id\":\"529\",\"title\":\"Charity Help\",\"alias\":\"charity-help\",\"zip\":\"packs\\/charity-help.zip\",\"uid\":\"4f3571c0b27f061648c9ff95b1a3f718\",\"img\":\"charity-help\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"494\":{\"id\":\"530\",\"title\":\"Charity Footer\",\"alias\":\"charity-footer\",\"zip\":\"packs\\/charity-footer.zip\",\"uid\":\"9340fa48c56635a8a781cc37c4bf538c\",\"img\":\"charity-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"11\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"495\":{\"id\":\"531\",\"title\":\"Cinematic Hero Titles\",\"alias\":\"cinematic-hero-titles\",\"zip\":\"cinematic-hero-titles.zip\",\"uid\":\"51a59c54bb97c274092d22dbf4f6085e\",\"img\":\"cinematic-hero-titles\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cinematic-hero-titles\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Cinematic Hero Titles\\\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"496\":{\"id\":\"532\",\"title\":\"Design DNA Scroll Video\",\"alias\":\"design-dna-scroll-video\",\"zip\":\"design-dna-scroll-video.zip\",\"uid\":\"39180fc9f7a07e50832fc1a68fb4eba2\",\"img\":\"design-dna-scroll-video\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/design-dna-scroll-video\\/\",\"version\":\"1.0.2\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Design DNA Scroll Video\\\" template is\\u00a0a striking, fullscreen hero module that is using our new Scroll Video addon.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-scrollvideo-addon\\\\\\/revslider-scrollvideo-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Scroll Video Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"497\":{\"id\":\"533\",\"title\":\"Food Delivery Lottie Scroll\",\"alias\":\"food-delivery-lottie-scroll\",\"zip\":\"food-delivery-lottie-scroll.zip\",\"uid\":\"5dfbfac45c5df7702238ba1b43afe8f6\",\"img\":\"food-delivery-lottie-scroll\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-delivery-lottie-scroll\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Design DNA Scroll Video\\\" template is\\u00a0a striking, fullscreen hero module that is using our new Scroll Video addon.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"498\":{\"id\":\"534\",\"title\":\"Food Recipe Carousel Template\",\"alias\":\"food-recipe-carousel-template\",\"zip\":\"\",\"uid\":\"food-recipe-carousel-template\",\"img\":\"packages\\/food-recipe-carousel-template-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-recipe-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"<span class=\\\"ttm_content\\\">Showcase your cooking recipes with the easy to use \\\"Food Recipe Carousel\\\" template. Clicking the titles opens up a detail view!<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Food Recipe Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"42\",\"installed\":false},\"499\":{\"id\":\"535\",\"title\":\"Food Recipe Carousel\",\"alias\":\"food-recipe-carousel\",\"zip\":\"packs\\/food-recipe-carousel.zip\",\"uid\":\"6ba9695ba1a22a6e99f96431d8fb01e8\",\"img\":\"food-recipe-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-recipe-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Food Recipe Carousel Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"42\",\"installed\":false},\"500\":{\"id\":\"536\",\"title\":\"Food Recipe Modal\",\"alias\":\"food-recipe-modal\",\"zip\":\"packs\\/food-recipe-modal.zip\",\"uid\":\"1c5b2e959cd973efc5c1887a3a4279f3\",\"img\":\"food-recipe-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-recipe-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"<span class=\\\"ttm_content\\\">The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Food Recipe Carousel Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"42\",\"installed\":false},\"501\":{\"id\":\"537\",\"title\":\"Corporate Carousel Template\",\"alias\":\"corporate-carousel-template\",\"zip\":\"\",\"uid\":\"corporate-carousel-template\",\"img\":\"packages\\/corporate_carousel_bundle.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/corporate-carousel-with-lightbox\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:14:10\",\"package\":\"Corporate Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"43\",\"installed\":false},\"502\":{\"id\":\"538\",\"title\":\"Corporate Carousel\",\"alias\":\"corporate-carousel\",\"zip\":\"packs\\/corporate-carousel.zip\",\"uid\":\"30dea0e333913cb5ebbf8dded8c3a839\",\"img\":\"corporate-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/\",\"version\":\"1.0.1\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:26:51\",\"package\":\"Corporate Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"43\",\"installed\":false},\"503\":{\"id\":\"539\",\"title\":\"Corporate Lightbox\",\"alias\":\"corporate-lightbox\",\"zip\":\"packs\\/corporate-lightbox.zip\",\"uid\":\"832c277bfc5a288c0dffd784e4041265\",\"img\":\"corporate-lightbox\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:34:36\",\"package\":\"Corporate Carousel Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"43\",\"installed\":false},\"504\":{\"id\":\"540\",\"title\":\"Cyber Carousel Template\",\"alias\":\"cyber-carousel-template\",\"zip\":\"\",\"uid\":\"cyber-carousel-template\",\"img\":\"packages\\/cybercarousel_bundle.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cyber-carousel-with-lightbox\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:40:25\",\"package\":\"Cyber Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"44\",\"installed\":false},\"505\":{\"id\":\"541\",\"title\":\"Cyber Carousel\",\"alias\":\"cyber-carousel\",\"zip\":\"packs\\/cyber-carousel.zip\",\"uid\":\"b5ef41c7f498bd1dccf8224bfbade718\",\"img\":\"cyber-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cyber-carousel-with-lightbox\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:42:44\",\"package\":\"Cyber Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"44\",\"installed\":false},\"506\":{\"id\":\"542\",\"title\":\"Cyber Carousel Lightbox\",\"alias\":\"cyber-carousel-lightbox\",\"zip\":\"packs\\/cyber-carousel-lightbox.zip\",\"uid\":\"cb91abeed0555dfcafe849c37e7c9c32\",\"img\":\"cyber-carousel-lightbox\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cyber-carousel-with-lightbox\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:50:15\",\"package\":\"Cyber Carousel Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"44\",\"installed\":false},\"507\":{\"id\":\"543\",\"title\":\"Woo Carousel One\",\"alias\":\"woocommerce-carousel-one\",\"zip\":\"woocommerce-carousel-one.zip\",\"uid\":\"df0a99cef3981ecb608dff4ed573a493\",\"img\":\"woocommerce-carousel-one\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:02:45\",\"package\":\"Woo Slider Pack\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"45\",\"installed\":false},\"508\":{\"id\":\"544\",\"title\":\"Woo Carousel One Static\",\"alias\":\"woocommerce-carousel-one-static\",\"zip\":\"woocommerce-carousel-one-static.zip\",\"uid\":\"5c955a3850369e79b1e18921306ac1df\",\"img\":\"woocommerce-carousel-one-static\\/slide1.jpg\",\"preview\":\"https:\\/\\/sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A static content carousel. Please use the \\\"non-static\\\" version for WooCommerce.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:05:02\",\"package\":\"Woo Slider Pack Static\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"46\",\"installed\":false},\"509\":{\"id\":\"545\",\"title\":\"Woo Carousel Two\",\"alias\":\"woocommerce-carousel-two\",\"zip\":\"woocommerce-carousel-two.zip\",\"uid\":\"fdd797d8e98a9138f5563b68b95ebe1c\",\"img\":\"woocommerce-carousel-two\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:06:57\",\"package\":\"Woo Slider Pack\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"45\",\"installed\":false},\"510\":{\"id\":\"546\",\"title\":\"Woo Carousel Two Static\",\"alias\":\"woocommerce-carousel-two-static\",\"zip\":\"woocommerce-carousel-two-static.zip\",\"uid\":\"2f3bfb1dfa99647426ce906f10dfc480\",\"img\":\"woocommerce-carousel-two-static\\/slide1.jpg\",\"preview\":\"https:\\/\\/sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A static content carousel. Please use the \\\"non-static\\\" version for WooCommerce.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:16:15\",\"package\":\"Woo Slider Pack Static\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"46\",\"installed\":false},\"511\":{\"id\":\"547\",\"title\":\"Woo Feature Slider\",\"alias\":\"woocommerce-feature-slider\",\"zip\":\"woocommerce-feature-slider.zip\",\"uid\":\"c8aa1f551065eeffc752f2d8daef6db1\",\"img\":\"woocommerce-feature-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:19:13\",\"package\":\"Woo Slider Pack\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"45\",\"installed\":false},\"512\":{\"id\":\"548\",\"title\":\"Woo Feature Slider Static\",\"alias\":\"woocommerce-feature-slider-static\",\"zip\":\"woocommerce-feature-slider-static.zip\",\"uid\":\"2f29e8fd101c799480152a7911b33ca6\",\"img\":\"woocommerce-feature-slider-static\\/slide1.jpg\",\"preview\":\"https:\\/\\/sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A static content slider Please use the \\\"non-static\\\" version for WooCommerce.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:20:57\",\"package\":\"Woo Slider Pack Static\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"46\",\"installed\":false},\"513\":{\"id\":\"549\",\"title\":\"Woo Liquid Slider\",\"alias\":\"woo-liquid-slider\",\"zip\":\"woo-liquid-slider.zip\",\"uid\":\"9f455f73675a73dbefe820288e994f27\",\"img\":\"woo-liquid-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-liquid-slider\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\",\"woocommerce\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-01-19 16:23:03\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"514\":{\"id\":\"550\",\"title\":\"Woo Liquid Slider Static\",\"alias\":\"woocommerce-liquid-slider-static\",\"zip\":\"woocommerce-liquid-slider-static.zip\",\"uid\":\"5848192fea46ffee95a91aa531848e19\",\"img\":\"woocommerce-liquid-slider-static\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-liquid-slider\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \\\"non-static\\\" version.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"woocommerce\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-01-19 16:24:35\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"515\":{\"id\":\"551\",\"title\":\"Woo Slider Pack\",\"alias\":\"woo-slider-pack\",\"zip\":\"\",\"uid\":\"woo-slider-pack\",\"img\":\"packages\\/woosliderpack_dynamic.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"slider\",\"postbased\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-20 09:34:45\",\"package\":\"Woo Slider Pack\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"45\",\"installed\":false},\"516\":{\"id\":\"552\",\"title\":\"Woo Slider Pack Static\",\"alias\":\"woo-slider-pack-static\",\"zip\":\"\",\"uid\":\"woo-slider-pack-static\",\"img\":\"packages\\/woosliderpack_static.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-20 09:39:21\",\"package\":\"Woo Slider Pack Static\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"46\",\"installed\":false},\"517\":{\"id\":\"553\",\"title\":\"Creative Hero Collection\",\"alias\":\"creative-hero-collection\",\"zip\":\"creative-hero-collection.zip\",\"uid\":\"e20126d93d081055e5ff3f6981b971fa\",\"img\":\"creative-hero-collection\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-hero-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \\\"scene\\\".<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-02-23 10:22:47\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"518\":{\"id\":\"554\",\"title\":\"Photo Slider\",\"alias\":\"photographer-slider\",\"zip\":\"photographer-slider.zip\",\"uid\":\"e00104cff231e2aaeb149b3c63e78a5e\",\"img\":\"photographer-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-and-videographer-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">A great module for any photographer\\/videographer who wants to display their portfolio in an engaging way.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-02-23 10:25:31\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"519\":{\"id\":\"555\",\"title\":\"Real Estate Slider\",\"alias\":\"realestate-slider\",\"zip\":\"realestate-slider.zip\",\"uid\":\"596effabfef768f0371cba2b1fdd0c1d\",\"img\":\"realestate-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/real-estate-showcase-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Showcase your clients real estate offerings with this clean and convincing presentation.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-02-23 10:45:36\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"520\":{\"id\":\"556\",\"title\":\"Saas Product Slider\",\"alias\":\"saas-product-slider\",\"zip\":\"saas-product-slider.zip\",\"uid\":\"3cf7809058f383425c5409aa1204335f\",\"img\":\"saas-product-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/saas-product-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Present your digital SaaS product with a modern design and stunning animations.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-02-23 10:49:44\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"521\":{\"id\":\"557\",\"title\":\"Cinematic Wildlife Template\",\"alias\":\"cinematic-wildlife-template\",\"zip\":\"\",\"uid\":\"cinematic-wildlife-template\",\"img\":\"packages\\/cinematic-wildlife-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cinematic-wildlife-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.8\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-04-16 10:45:38\",\"package\":\"Cinematic Wildlife Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"47\",\"installed\":false},\"522\":{\"id\":\"558\",\"title\":\"Cinematic Wildlife Slider\",\"alias\":\"cinematic-wildlife-slider\",\"zip\":\"packs\\/cinematic-wildlife-slider.zip\",\"uid\":\"a37b04e221a845d6d446f4d70e815b87\",\"img\":\"cinematic-wildlife-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cinematic-wildlife-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-04-16 10:47:01\",\"package\":\"Cinematic Wildlife Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"47\",\"installed\":false},\"523\":{\"id\":\"559\",\"title\":\"Cinematic Wildlife Modal\",\"alias\":\"cinematic-wildlife-modal\",\"zip\":\"packs\\/cinematic-wildlife-modal.zip\",\"uid\":\"636a6885199f684ad743167ceea70dc4\",\"img\":\"cinematic-wildlife-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cinematic-wildlife-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-04-16 10:50:56\",\"package\":\"Cinematic Wildlife Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"47\",\"installed\":false},\"524\":{\"id\":\"560\",\"title\":\"Gaming Stats Presentation Slider\",\"alias\":\"gaming-stats-presentation-slider\",\"zip\":\"gaming-stats-presentation-slider.zip\",\"uid\":\"988df5050f2a45a108ef32518a725bf8\",\"img\":\"gaming-stats-presentation-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charts-addon-presentation-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.11\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Create interactive presentations and showcase statistics with unique and customizable charts<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-charts-addon\\\\\\/revslider-charts-addon.php\\\",\\\"name\\\":\\\"Charts AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-04-29 09:50:58\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"525\":{\"id\":\"561\",\"title\":\"Coffee Shop Split Screen Slider\",\"alias\":\"coffee-flavours\",\"zip\":\"coffee-flavours.zip\",\"uid\":\"63726447a6a614d8f53fbf6024fd3033\",\"img\":\"coffee-flavors\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/coffee-shop-split-screen-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-06-11 09:09:52\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"526\":{\"id\":\"562\",\"title\":\"Modern Portfolio Showreel Slider\",\"alias\":\"showreel-slider\",\"zip\":\"showreel-slider.zip\",\"uid\":\"bced29a585e67153a1ed7608ddcdb69d\",\"img\":\"showreel-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/modern-portfolio-showreel-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-06-11 09:14:43\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"527\":{\"id\":\"563\",\"title\":\"Visual Art Forms Slider\",\"alias\":\"visual-art-forms\",\"zip\":\"visual-art-forms.zip\",\"uid\":\"4d57a5abf20bc4a615fe30837ac3ce1a\",\"img\":\"visual-art-forms\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/visual-art-forms-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-06-11 09:18:19\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"528\":{\"id\":\"564\",\"title\":\"Background Effect Hero\",\"alias\":\"bg-effect-hero\",\"zip\":\"bg-effect-hero.zip\",\"uid\":\"55bb0fa5ac66ad84423fa704b701e1df\",\"img\":\"bg-effect-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/background-effect-hero-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">If you really want to stun your visitors with gorgeous gradients and dreamy transitions, <br \\/>\\r\\nthis slider \\/ hero module is exactly what you were looking for.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 10:45:50\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"529\":{\"id\":\"565\",\"title\":\"Cyber Glitch Effect Slider\",\"alias\":\"cyberfunk\",\"zip\":\"cyberfunk.zip\",\"uid\":\"44fdc7e13074bdc46500972cd708c739\",\"img\":\"cyberfunk\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cyber-glitch-effect-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Dive into a futuristic, neon, cyber world with this amazing slider template featuring <br \\/>\\r\\nglitch effect transitions and a typewriter effect.<br \\/>\\r\\nThe custom navigation skin can be customized easily!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 10:51:54\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"530\":{\"id\":\"566\",\"title\":\"Motion Blur Portfolio Showcase\",\"alias\":\"motion-blur-portfolio\",\"zip\":\"motion-blur-portfolio.zip\",\"uid\":\"28086bed49cfb241c7d40f91cd64e970\",\"img\":\"motion-blur-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/motion-blur-portfolio-showcase\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This clean showcase slider with an optional video popup is using a fancy motion blur transition!<br \\/>\\r\\nPacked with a logo and menu its ready to visualize your wildest ideas.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 10:56:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"531\":{\"id\":\"567\",\"title\":\"Portal Effect Hero Slider\",\"alias\":\"portal-effect-hero\",\"zip\":\"portal-effect-hero.zip\",\"uid\":\"87f5b64e44dc5b75bc1c7adbeb287ee9\",\"img\":\"portal-effect-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/portal-effect-hero-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.<br \\/>\\r\\nThe design already includes elements like a logo, menu and social media icons.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 11:08:18\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"532\":{\"id\":\"568\",\"title\":\"Winery Timeline Slider\",\"alias\":\"winery-timeline\",\"zip\":\"winery-timeline.zip\",\"uid\":\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\",\"img\":\"winery-timeline\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/winery-timeline-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Tell your own story with this fabulous timeline slider.<br \\/>\\r\\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 11:13:39\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"533\":{\"id\":\"569\",\"title\":\"Smart Living One Pager V1\",\"alias\":\"smart-living-one-pager-v1\",\"zip\":\"\",\"uid\":\"smart-living-one-pager-v1\",\"img\":\"packages\\/Smart-Living-One-Pager-V1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 14:33:48\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"534\":{\"id\":\"570\",\"title\":\"Smart Living One Pager V2\",\"alias\":\"smart-living-one-pager-v2\",\"zip\":\"\",\"uid\":\"smart-living-one-pager-v2\",\"img\":\"packages\\/Smart-Living-One-Pager-V2.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 14:38:21\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"535\":{\"id\":\"571\",\"title\":\"Smart Living One Pager V3\",\"alias\":\"smart-living-one-pager-v3\",\"zip\":\"\",\"uid\":\"smart-living-one-pager-v3\",\"img\":\"packages\\/Smart-Living-One-Pager-V3.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 14:39:44\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"536\":{\"id\":\"572\",\"title\":\"Menu 1\",\"alias\":\"menu-1\",\"zip\":\"packs\\/menu-1.zip\",\"uid\":\"6e5038d711f2ee8326c79c3a9e06ded4\",\"img\":\"menu-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 14:41:12\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"537\":{\"id\":\"573\",\"title\":\"Hero 1\",\"alias\":\"onepage-hero-1\",\"zip\":\"packs\\/onepage-hero-1.zip\",\"uid\":\"9f5fec6956bd2e1e1ecc553a8b7471b0\",\"img\":\"onepage-hero-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 14:48:41\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"538\":{\"id\":\"574\",\"title\":\"About 1\",\"alias\":\"about1\",\"zip\":\"packs\\/about1.zip\",\"uid\":\"fc4962093f61124101c05ceb506fa5d2\",\"img\":\"about1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 14:50:54\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"539\":{\"id\":\"575\",\"title\":\"Services 1\",\"alias\":\"services1\",\"zip\":\"packs\\/services1.zip\",\"uid\":\"08f72a81aeb9afdaa57f544e4331a6da\",\"img\":\"services1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 14:52:41\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"540\":{\"id\":\"576\",\"title\":\"Projects 1\",\"alias\":\"projects1\",\"zip\":\"packs\\/projects1.zip\",\"uid\":\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\",\"img\":\"projects1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:01:48\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"541\":{\"id\":\"577\",\"title\":\"Footer 1\",\"alias\":\"footer-1\",\"zip\":\"packs\\/footer-1.zip\",\"uid\":\"947fac99689a985c7f0f7dfec4311f6b\",\"img\":\"footer-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:05:00\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"542\":{\"id\":\"578\",\"title\":\"Explainer Block 1 Part 1\",\"alias\":\"explainer-block-1-part1\",\"zip\":\"packs\\/explainer-block-1-part1.zip\",\"uid\":\"731980bef0ea06263d05b286b5a75dfe\",\"img\":\"explainer-block-1-part1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">An elegant slider for your website. Flexible and customizable.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:06:07\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"543\":{\"id\":\"579\",\"title\":\"Explainer Block 1 Part 2\",\"alias\":\"explainer-block-1-part2\",\"zip\":\"packs\\/explainer-block-1-part2.zip\",\"uid\":\"ded730f13551f78b9a87b159b72d8ce8\",\"img\":\"explainer-block-1-part2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">An elegant slider for your website. Flexible and customizable.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:07:26\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"544\":{\"id\":\"580\",\"title\":\"Projects Modal 1\",\"alias\":\"projects-modal-1\",\"zip\":\"packs\\/projects-modal-1.zip\",\"uid\":\"b17af2f4e21786711a2ce4ac0c4436ad\",\"img\":\"projects-modal-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:08:26\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"545\":{\"id\":\"581\",\"title\":\"Menu 2\",\"alias\":\"menu-2\",\"zip\":\"packs\\/menu-2.zip\",\"uid\":\"a8d103f753ee50d4f81aa4100df8b7f9\",\"img\":\"menu-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:20:20\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"546\":{\"id\":\"582\",\"title\":\"Hero 2\",\"alias\":\"hero-2\",\"zip\":\"packs\\/hero-2.zip\",\"uid\":\"7e56900f8c4b6e12435b70e141accaa8\",\"img\":\"hero-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 15:27:59\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"547\":{\"id\":\"583\",\"title\":\"Services 2\",\"alias\":\"services-2\",\"zip\":\"packs\\/services-2.zip\",\"uid\":\"da2d588b291a7754096ac77746ba1da5\",\"img\":\"services-2\\/services2-thumbnail.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:29:09\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"548\":{\"id\":\"584\",\"title\":\"About 2\",\"alias\":\"about-2\",\"zip\":\"packs\\/about-2.zip\",\"uid\":\"8e9e84d1aec08de6e099473683bf0e57\",\"img\":\"about-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:30:15\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"549\":{\"id\":\"585\",\"title\":\"Projects 2\",\"alias\":\"projects-2\",\"zip\":\"packs\\/projects-2.zip\",\"uid\":\"99bc6ca75f6d5e018701aef5f5b22b27\",\"img\":\"projects-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:32:06\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"550\":{\"id\":\"586\",\"title\":\"Footer 2\",\"alias\":\"footer2\",\"zip\":\"packs\\/footer2.zip\",\"uid\":\"99df496d2fd9e897a2debb66958cb610\",\"img\":\"footer2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:34:09\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"551\":{\"id\":\"587\",\"title\":\"Explainer Block 2 Part 1\",\"alias\":\"explainer-block-2-part1\",\"zip\":\"packs\\/explainer-block-2-part1.zip\",\"uid\":\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\",\"img\":\"explainer-block-2-part1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:35:48\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"552\":{\"id\":\"588\",\"title\":\"Explainer Block 2 Part 2\",\"alias\":\"explainer-block-2-part2\",\"zip\":\"packs\\/explainer-block-2-part2.zip\",\"uid\":\"b12ac82484c5d2609994978f95026057\",\"img\":\"explainer-block-2-part2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:37:05\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"553\":{\"id\":\"589\",\"title\":\"Projects Modal 2\",\"alias\":\"projects-modal-2\",\"zip\":\"packs\\/projects-modal-2.zip\",\"uid\":\"ac164d7043a8958ae2931e4be54bf56e\",\"img\":\"projects-modal-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:38:22\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"554\":{\"id\":\"590\",\"title\":\"Menu 3\",\"alias\":\"menu-3\",\"zip\":\"packs\\/menu-3.zip\",\"uid\":\"7300529d564642c76e61890cf0ef57cf\",\"img\":\"menu-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:42:03\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"555\":{\"id\":\"591\",\"title\":\"Hero 3\",\"alias\":\"hero-3\",\"zip\":\"packs\\/hero-3.zip\",\"uid\":\"08db05794abf4e6c10788cbd423f92b2\",\"img\":\"hero-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:46:06\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"556\":{\"id\":\"592\",\"title\":\"About 3\",\"alias\":\"about-3\",\"zip\":\"packs\\/about-3.zip\",\"uid\":\"dac01fc9b9d664f271e1ea6a1bbb850c\",\"img\":\"about-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:47:44\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"557\":{\"id\":\"593\",\"title\":\"Services 3\",\"alias\":\"services-3\",\"zip\":\"packs\\/services-3.zip\",\"uid\":\"4bad1c4a765cef7d93d3c7e2a0e76b83\",\"img\":\"services-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:50:03\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"558\":{\"id\":\"594\",\"title\":\"Projects 3\",\"alias\":\"projects-3\",\"zip\":\"packs\\/projects-3.zip\",\"uid\":\"e3337a84122e580679474dea8d7bf37c\",\"img\":\"projects-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:51:31\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"559\":{\"id\":\"595\",\"title\":\"Footer 3\",\"alias\":\"footer-3\",\"zip\":\"packs\\/footer-3.zip\",\"uid\":\"524f4445a5565bf3ef1dcd7b2f0228cc\",\"img\":\"footer-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:53:03\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"560\":{\"id\":\"596\",\"title\":\"Explainer Block 3 Part 1\",\"alias\":\"explainer-block-3-part1\",\"zip\":\"packs\\/explainer-block-3-part1.zip\",\"uid\":\"b1469a955fecb4e1d645a604804716de\",\"img\":\"explainer-block-3-part1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:54:20\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"561\":{\"id\":\"597\",\"title\":\"Explainer Block 3 Part 2\",\"alias\":\"explainer-block-3-part2\",\"zip\":\"packs\\/explainer-block-3-part2.zip\",\"uid\":\"3faa6f1dc248ef2ba3d50cc60db557b1\",\"img\":\"explainer-block-3-part2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:55:33\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"562\":{\"id\":\"598\",\"title\":\"Projects Modal 3\",\"alias\":\"projects-modal-3\",\"zip\":\"packs\\/projects-modal-3.zip\",\"uid\":\"b22bb57c30e75bf7d7ba7d240a21b3fe\",\"img\":\"projects-modal-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Never build a one pager from scratch again!<br>\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.<br>\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:57:05\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"563\":{\"id\":\"599\",\"title\":\"Urban Street Skate Slider\",\"alias\":\"urban-street-skate-slider\",\"zip\":\"urban-street-skate-slider.zip\",\"uid\":\"14b18e98ac51aa922a264b74518d6f25\",\"img\":\"urban-street-skate-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-14 18:54:30\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"564\":{\"id\":\"600\",\"title\":\"Fast Food Burger Restaurant Slider\",\"alias\":\"yummy-burgers\",\"zip\":\"yummy-burgers.zip\",\"uid\":\"3de3520af809748281f3aaa16d8c2222\",\"img\":\"yummy-burgers\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fast-food-burger-restaurant-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related products.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-10-11 12:47:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"565\":{\"id\":\"601\",\"title\":\"Tattoo Event Website Template Package\",\"alias\":\"tattoo-event-website-template-package\",\"zip\":\"\",\"uid\":\"tattoo-event-website-template-package\",\"img\":\"packages\\/tattoo_event_website_package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-10-12 14:37:06\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"566\":{\"id\":\"602\",\"title\":\"Tattoo Event Hero Slider\",\"alias\":\"tattoo-event-hero-slider\",\"zip\":\"packs\\/tattoo-event-hero-slider.zip\",\"uid\":\"3a4eb0f2f1de6b9a644d626c4472208b\",\"img\":\"tattoo-event-hero-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-10-13 11:11:21\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"567\":{\"id\":\"603\",\"title\":\"Tattoo Event About\",\"alias\":\"tattoo-event-about\",\"zip\":\"packs\\/tattoo-event-about.zip\",\"uid\":\"ae8aaf2b1aeb84036c35ac3d4a178ed6\",\"img\":\"tattoo-event-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"2021-10-13 11:14:35\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"568\":{\"id\":\"604\",\"title\":\"Tattoo Event Artists\",\"alias\":\"tattoo-event-artists\",\"zip\":\"packs\\/tattoo-event-artists.zip\",\"uid\":\"e11b6508214396963c856afc1b604e58\",\"img\":\"tattoo-event-artists\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\",\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"2021-10-13 11:16:36\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"569\":{\"id\":\"605\",\"title\":\"Tattoo Event Schedule\",\"alias\":\"tattoo-event-schedule\",\"zip\":\"packs\\/tattoo-event-schedule.zip\",\"uid\":\"73be4b953a719fc9abfadc447e88b906\",\"img\":\"tattoo-event-schedule\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-10-13 11:19:17\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"570\":{\"id\":\"606\",\"title\":\"Tattoo Event News\",\"alias\":\"tattoo-event-news\",\"zip\":\"packs\\/tattoo-event-news.zip\",\"uid\":\"80eafaaaa2f1844cac7c5c1efb0912d1\",\"img\":\"tattoo-event-news\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-10-13 11:21:56\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"571\":{\"id\":\"607\",\"title\":\"Tattoo Event Footer\",\"alias\":\"tattoo-event-footer\",\"zip\":\"packs\\/tattoo-event-footer.zip\",\"uid\":\"0c16f7290794f2e26566c8a8ca8f6493\",\"img\":\"tattoo-event-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-10-13 11:23:18\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"572\":{\"id\":\"608\",\"title\":\"Startup Website Template\",\"alias\":\"startup-website-template\",\"zip\":\"\",\"uid\":\"startup-website-template\",\"img\":\"packages\\/startup-website-template.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:29:34\",\"package\":\"Startup Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"573\":{\"id\":\"609\",\"title\":\"Startup Menu\",\"alias\":\"startup-menu\",\"zip\":\"packs\\/startup-menu.zip\",\"uid\":\"10b7853c05d47a99e61a68ec7ef0a0ea\",\"img\":\"startup-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-11-03 09:32:41\",\"package\":\"Startup Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"574\":{\"id\":\"610\",\"title\":\"Startup Hero\",\"alias\":\"startup-hero\",\"zip\":\"packs\\/startup-hero.zip\",\"uid\":\"7a41e68bac8bc7f937b7eb957e01eb11\",\"img\":\"startup-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:34:41\",\"package\":\"Startup Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"575\":{\"id\":\"611\",\"title\":\"Startup About\",\"alias\":\"startup-about\",\"zip\":\"packs\\/startup-about.zip\",\"uid\":\"22a816ba986476a36fef3887ff4d1ea1\",\"img\":\"startup-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:36:55\",\"package\":\"Startup Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"0\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"576\":{\"id\":\"612\",\"title\":\"Startup Features 1\",\"alias\":\"startup-features-1\",\"zip\":\"packs\\/startup-features-1.zip\",\"uid\":\"4b0b7b8773ba30bdc58b862442155faa\",\"img\":\"startup-features-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:39:11\",\"package\":\"Startup Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"577\":{\"id\":\"613\",\"title\":\"Startup Features 2\",\"alias\":\"startup-features-2\",\"zip\":\"packs\\/startup-features-2.zip\",\"uid\":\"7a686556ca8c4355fea931b3e946a3d0\",\"img\":\"startup-features-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:40:44\",\"package\":\"Startup Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"0\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"578\":{\"id\":\"614\",\"title\":\"Startup Team\",\"alias\":\"startup-team\",\"zip\":\"packs\\/startup-team.zip\",\"uid\":\"7969f1f556fd276ec04dcbf49144d2f8\",\"img\":\"startup-team\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:42:12\",\"package\":\"Startup Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"579\":{\"id\":\"615\",\"title\":\"Startup Reviews\",\"alias\":\"startup-reviews\",\"zip\":\"packs\\/startup-reviews.zip\",\"uid\":\"4d5253028165c237cda5f42c3f721c09\",\"img\":\"startup-reviews\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:43:42\",\"package\":\"Startup Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"580\":{\"id\":\"616\",\"title\":\"Startup CTA\",\"alias\":\"startup-cta\",\"zip\":\"packs\\/startup-cta.zip\",\"uid\":\"bfe7cb2a94dd8292179e16a986cf2748\",\"img\":\"startup-cta\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:45:02\",\"package\":\"Startup Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"581\":{\"id\":\"617\",\"title\":\"Startup Footer\",\"alias\":\"startup-footer\",\"zip\":\"packs\\/startup-footer.zip\",\"uid\":\"d73466042d108699d366bf9cab2beaa8\",\"img\":\"startup-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-11-03 09:46:31\",\"package\":\"Startup Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"582\":{\"id\":\"618\",\"title\":\"Startup Video Modal\",\"alias\":\"startup-video-modal\",\"zip\":\"packs\\/startup-video-modal.zip\",\"uid\":\"5fd53a8ad93456a152c25079f6437377\",\"img\":\"startup-video-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.<br>\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-11-03 09:47:44\",\"package\":\"Startup Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"583\":{\"id\":\"619\",\"title\":\"Christmas Gift Card Landing Page\",\"alias\":\"christmas-gift-card-landing-page\",\"zip\":\"\",\"uid\":\"christmas-gift-card-landing-page\",\"img\":\"packages\\/christmas-gift-card-landing-page.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/christmas-gift-card-landing-page\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.11\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-12-08 12:05:33\",\"package\":\"Christmas Gift Card Landing Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"53\",\"installed\":false},\"584\":{\"id\":\"620\",\"title\":\"Christmas Landing Page 1\",\"alias\":\"christmas-landing-page-1\",\"zip\":\"packs\\/christmas-landing-page-1.zip\",\"uid\":\"17eb656138d076ca1dc2d9fa5cefb1b8\",\"img\":\"christmas-gift-card-landing-page\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/christmas-gift-card-landing-page\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.11\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-12-08 12:08:37\",\"package\":\"Christmas Gift Card Landing Page\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"53\",\"installed\":false},\"585\":{\"id\":\"621\",\"title\":\"Christmas Landing Page 2\",\"alias\":\"christmas-landing-page-2\",\"zip\":\"packs\\/christmas-landing-page-2.zip\",\"uid\":\"ea0d2cfdba50c8060c66ee7b979c3b83\",\"img\":\"christmas-landing-page-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/christmas-gift-card-landing-page\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.11\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-12-08 12:10:54\",\"package\":\"Christmas Gift Card Landing Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"53\",\"installed\":false},\"586\":{\"id\":\"622\",\"title\":\"Image Slider\",\"alias\":\"image-slider\",\"zip\":\"image-slider.zip\",\"uid\":\"85a8fcfa9220809176bd3d6bc70b4abf\",\"img\":\"image-slider\\/slide-1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/newborn-image-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.12\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Get an instant \\\"wow\\\" from your visitors with this sleek background image slider, that includes a clean UI for easy navigation and smooth transitions.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-04 09:45:41\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"587\":{\"id\":\"623\",\"title\":\"Full Width Slider\",\"alias\":\"full-width-slider\",\"zip\":\"full-width-slider.zip\",\"uid\":\"e2792804e7a1f3ec9806f6a6225a559d\",\"img\":\"full-width-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/delicious-full-width-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">We\'ve prepared something tasty for you. A delicious looking, responsive full width slider, with a wide range of use cases and a plethora of smart, UI navigation options.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-10 11:40:04\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"588\":{\"id\":\"624\",\"title\":\"App Website Template\",\"alias\":\"app-website-template\",\"zip\":\"\",\"uid\":\"app-website-template\",\"img\":\"packages\\/app-website-template.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:22:53\",\"package\":\"App Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"589\":{\"id\":\"625\",\"title\":\"App Website Menu\",\"alias\":\"app-website-menu\",\"zip\":\"packs\\/app-website-menu.zip\",\"uid\":\"c3c100db368c091d01852df9851b9840\",\"img\":\"app-website-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:26:14\",\"package\":\"App Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"590\":{\"id\":\"626\",\"title\":\"App Website Hero\",\"alias\":\"app-website-hero\",\"zip\":\"packs\\/app-website-hero.zip\",\"uid\":\"4b42974b08f2923986932ed529974d6f\",\"img\":\"app-website-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:29:00\",\"package\":\"App Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\" zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"591\":{\"id\":\"627\",\"title\":\"App Download Buttons\",\"alias\":\"app-download-buttons\",\"zip\":\"packs\\/app-download-buttons.zip\",\"uid\":\"d5ecce65284cc95c506185e6f6291d55\",\"img\":\"app-download-buttons\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:31:22\",\"package\":\"App Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"592\":{\"id\":\"628\",\"title\":\"App Website About\",\"alias\":\"app-website-about\",\"zip\":\"packs\\/app-website-about.zip\",\"uid\":\"984477b3ea7c943a7c6be78950754e3c\",\"img\":\"app-website-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:33:06\",\"package\":\"App Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"593\":{\"id\":\"629\",\"title\":\"App Website Features\",\"alias\":\"app-website-features\",\"zip\":\"packs\\/app-website-features.zip\",\"uid\":\"206a0f73553c974ad86790fba6a13efd\",\"img\":\"app-website-features\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:35:08\",\"package\":\"App Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"594\":{\"id\":\"630\",\"title\":\"App Website Video Cta\",\"alias\":\"app-website-video-cta\",\"zip\":\"packs\\/app-website-video-cta.zip\",\"uid\":\"19b2930f9cd9840dccbe94cb1cc435e2\",\"img\":\"app-website-video-cta\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:36:15\",\"package\":\"App Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"595\":{\"id\":\"631\",\"title\":\"App Website Screenshots\",\"alias\":\"app-website-screenshots\",\"zip\":\"packs\\/app-website-screenshots.zip\",\"uid\":\"94ce8eeecb7ffad62adc2d29b203f9d2\",\"img\":\"app-website-screenshots\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:38:15\",\"package\":\"App Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"596\":{\"id\":\"632\",\"title\":\"App Testimonials Title\",\"alias\":\"app-testimonials-title\",\"zip\":\"packs\\/app-testimonials-title.zip\",\"uid\":\"bea74fa6e180fe23007c3d215b1b0704\",\"img\":\"app-testimonials-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:40:21\",\"package\":\"App Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"597\":{\"id\":\"633\",\"title\":\"App Website Testimonials\",\"alias\":\"app-website-testimonials\",\"zip\":\"packs\\/app-website-testimonials.zip\",\"uid\":\"e7438a870ac1007da4c7821056d511fc\",\"img\":\"app-website-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:41:59\",\"package\":\"App Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\" offset=\\\"t:-300px,-300px,-300px,-250px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\\\" zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"598\":{\"id\":\"634\",\"title\":\"App Website Team\",\"alias\":\"app-website-team\",\"zip\":\"packs\\/app-website-team.zip\",\"uid\":\"d9013f2968e43f696f8cc33fa3524071\",\"img\":\"app-website-team\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:43:40\",\"package\":\"App Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\" offset=\\\"t:-350px,-350px,-350px,-300px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\\\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"599\":{\"id\":\"635\",\"title\":\"App Website Footer\",\"alias\":\"app-website-footer\",\"zip\":\"packs\\/app-website-footer.zip\",\"uid\":\"5e13126b929feb389f9e083f3476ec46\",\"img\":\"app-website-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:45:12\",\"package\":\"App Website Template\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"600\":{\"id\":\"636\",\"title\":\"App Video Modal\",\"alias\":\"app-video-modal\",\"zip\":\"packs\\/app-video-modal.zip\",\"uid\":\"7fe8115d0b6158c90fe92d1144ed7b01\",\"img\":\"app-video-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:46:49\",\"package\":\"App Website Template\",\"package_order\":\"11\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"601\":{\"id\":\"637\",\"title\":\"Testimonial Carousel Pack\",\"alias\":\"testimonial-carousel-pack\",\"zip\":\"\",\"uid\":\"testimonial-carousel-pack\",\"img\":\"packages\\/testimonial-carousel-pack.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">An elegant slider for your website. Flexible and customizable.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:38:17\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"602\":{\"id\":\"638\",\"title\":\"Testimonial Carousel 1\",\"alias\":\"testimonial-carousel-1\",\"zip\":\"packs\\/testimonial-carousel-1.zip\",\"uid\":\"1cc1f92edb4edd47f880c0b4f77e343d\",\"img\":\"testimonial-carousel-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:41:02\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"603\":{\"id\":\"639\",\"title\":\"Testimonial Carousel 2\",\"alias\":\"testimonial-carousel-2\",\"zip\":\"packs\\/testimonial-carousel-2.zip\",\"uid\":\"b6ad1675b8d14c0ccc63ffc01b221aac\",\"img\":\"testimonial-carousel-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:43:25\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"604\":{\"id\":\"640\",\"title\":\"Testimonial Carousel 3\",\"alias\":\"testimonial-carousel-3\",\"zip\":\"packs\\/testimonial-carousel-3.zip\",\"uid\":\"cb4a72fb40fc400a71754f71b9bb2d6e\",\"img\":\"testimonial-carousel-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:46:01\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"605\":{\"id\":\"641\",\"title\":\"Testimonial Carousel 4\",\"alias\":\"testimonial-carousel-4\",\"zip\":\"packs\\/testimonial-carousel-4.zip\",\"uid\":\"bfca98d6b4042b38df044e9e2a6ca983\",\"img\":\"testimonial-carousel-4\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:47:57\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"606\":{\"id\":\"642\",\"title\":\"Testimonial Carousel 5\",\"alias\":\"testimonial-carousel-5\",\"zip\":\"packs\\/testimonial-carousel-5.zip\",\"uid\":\"4a9b9c72b51628e1343adde9bff3915f\",\"img\":\"testimonial-carousel-5\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Want to show testimonials on your website ?  We got you covered.  Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:49:27\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"607\":{\"id\":\"643\",\"title\":\"Deep Dive Ocean Water Effect\",\"alias\":\"deep-dive\",\"zip\":\"deep-dive.zip\",\"uid\":\"5cc0599857b0108fe4e76adc7fbf9a16\",\"img\":\"deep-dive\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/deep-dive-ocean-water-effect\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Take a dive into the ocean with this 3D Particles Animation template for Slider Revolution.<br>\\r\\nThe scroll-based interaction makes this hero module an absolute eye-catcher for any ocean-related website.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-02-09 09:23:47\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"608\":{\"id\":\"644\",\"title\":\"Particle Wave Showcase\",\"alias\":\"particle-wave-showcase\",\"zip\":\"particle-wave-showcase.zip\",\"uid\":\"1c9ac477fd636078d1812d8d98060899\",\"img\":\"particle-wave-showcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/particle-wave-showcase\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Is your website missing that one unique design element to set it apart from your competition? The Particle Wave addon for Slider Revolution enables you to add interactive, 3D particles background animation effects that will amaze your clients!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-02-09 09:30:08\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"609\":{\"id\":\"645\",\"title\":\"Video Hero Header\",\"alias\":\"video-hero-header\",\"zip\":\"video-hero-header.zip\",\"uid\":\"f6a715d4b10e0746f7eb5100836ba1ab\",\"img\":\"video-hero-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/video-hero-header\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Get ahead with this modern, futuristic video hero header with colorful gradients and a polygon particle wave.<br>\\r\\nShowcase the highlights of your tech-related business website with a video button that demands to be clicked.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-02-09 09:33:10\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"610\":{\"id\":\"646\",\"title\":\"Solar System Showcase Slider\",\"alias\":\"solar-system-showcase-slider\",\"zip\":\"solar-system-showcase-slider.zip\",\"uid\":\"40f7b26ea7f8228d40e8e9cf0f34b5e8\",\"img\":\"solar-system-showcase-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/solar-system-showcase-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Want to amaze your users ? Look no further.  Showcase products, images or anything you can think of with this highly capable and easily customisable full screen slider. <\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-02-09 09:50:27\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"611\":{\"id\":\"647\",\"title\":\"Optic Shop Showcase Slider\",\"alias\":\"Optic-shop-showcase-slider\",\"zip\":\"Optic-shop-showcase-slider.zip\",\"uid\":\"01509228c996ad45c2179d03654f499b\",\"img\":\"Optic-shop-showcase-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/optic-shop-showcase-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.16\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">This image slider is the perfect showcase for any optic shop, utilizing the blur effect in a brilliant way. It\'s not just made for your optic showcase but also a great fit for any modern product presentation.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":null,\"date\":\"2022-02-16 16:41:07\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"612\":{\"id\":\"648\",\"title\":\"WordPress Charts And Graphs\",\"alias\":\"charts-template-showcase\",\"zip\":\"charts-template-showcase.zip\",\"uid\":\"4ae2fe61830f96c6c5b316368c1ad2c6\",\"img\":\"charts-template-showcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/wordpress-charts-and-graphs\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.17\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Who says data has to look boring? With our WordPress charts addon, you can create eye-catching sliders and hero sections with interactive and stunning-looking charts.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-charts-addon\\\\\\/revslider-charts-addon.php\\\",\\\"name\\\":\\\"Charts AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-03 15:55:16\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"613\":{\"id\":\"649\",\"title\":\"Fashion Website Slider Template\",\"alias\":\"fashion-website-slider-template\",\"zip\":\"\",\"uid\":\"fashion-website-slider-template\",\"img\":\"packages\\/fashion-website-slider.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fashion-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.19\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-14 13:00:36\",\"package\":\"Fashion Website Slider\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"56\",\"installed\":false},\"614\":{\"id\":\"650\",\"title\":\"Fashion Website Slider\",\"alias\":\"fashion-website-slider\",\"zip\":\"packs\\/fashion-website-slider.zip\",\"uid\":\"8fb8379f47346173fa0dd402dda37360\",\"img\":\"fashion-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fashion-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.19\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-14 13:04:56\",\"package\":\"Fashion Website Slider\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"56\",\"installed\":false},\"615\":{\"id\":\"651\",\"title\":\"Fashion Website Slider Modal\",\"alias\":\"fashion-website-slider-modal\",\"zip\":\"packs\\/fashion-website-slider-modal.zip\",\"uid\":\"788f34043b6a5fcbfa5fc1c3322fb502\",\"img\":\"fashion-website-slider-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fashion-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.19\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-14 13:08:21\",\"package\":\"Fashion Website Slider\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"56\",\"installed\":false},\"616\":{\"id\":\"652\",\"title\":\"Furniture Website Slider\",\"alias\":\"furniture-website-slider\",\"zip\":\"furniture-website-slider.zip\",\"uid\":\"8575493ed5fd1ee2e671e67479fdeccb\",\"img\":\"furniture-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/furniture-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.19\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Promote products or create stunning landing pages with the Furniture Website Slider. Each slide comes with a different layout that can be used as a hero module or on an individual section on your website.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-23 14:05:44\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"617\":{\"id\":\"653\",\"title\":\"Fitness Gym Website Slider\",\"alias\":\"fitness-gym-website-slider\",\"zip\":\"fitness-gym-website-slider.zip\",\"uid\":\"86894d98e34a590e80a1d0cd3d7dc819\",\"img\":\"fitness-gym-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fitness-gym-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Make your website visitors want to hit the gym once they see this fitness website slider. The background videos and unique, masked slide transitions make this module stand out!<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":null,\"date\":\"2022-04-19 11:02:01\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"618\":{\"id\":\"654\",\"title\":\"Ai & Robotics Webside Slider Package\",\"alias\":\"ai--robotics-webside-slider-package\",\"zip\":\"\",\"uid\":\"ai--robotics-webside-slider-package\",\"img\":\"packages\\/ai-and-robotics-website-slider-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/ai-and-robotics-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"<span class=\\\"ttm_content\\\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-04-19 15:12:25\",\"package\":\"Ai & Robotics Webside Slider Package\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"57\",\"installed\":false},\"619\":{\"id\":\"655\",\"title\":\"Ai & Robotics Website Slider\",\"alias\":\"ai-and-robotics-website-slider\",\"zip\":\"packs\\/ai-and-robotics-website-slider.zip\",\"uid\":\"e40b7296d1519972029e9744a0c09b29\",\"img\":\"ai-and-robotics-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/ai-and-robotics-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-04-19 15:16:48\",\"package\":\"Ai & Robotics Webside Slider Package\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"57\",\"installed\":false},\"620\":{\"id\":\"656\",\"title\":\"AI Video Modal\",\"alias\":\"ai-video-modal\",\"zip\":\"packs\\/ai-video-modal.zip\",\"uid\":\"aab36a599413b7e66dfdda8f517b47b1\",\"img\":\"ai-video-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/ai-and-robotics-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-04-19 15:20:55\",\"package\":\"Ai & Robotics Webside Slider Package\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"57\",\"installed\":false},\"621\":{\"id\":\"657\",\"title\":\"Minimal Typography Website Slider\",\"alias\":\"minimal-typography-website-slider\",\"zip\":\"minimal-typography-website-slider.zip\",\"uid\":\"43cf63d6541d33b7d4e59350935d73bf\",\"img\":\"minimal-typography-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/minimal-typography-website-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Make the hero section on your website stand out with this minimal, typography-based hero slider, featuring cool parallax bubble effects and fluid slide transitions.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-04-25 14:39:36\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"622\":{\"id\":\"658\",\"title\":\"404 Page Collection\",\"alias\":\"404-page-collection\",\"zip\":\"404-page-collection.zip\",\"uid\":\"3f0b25b5e893b170536a498939465a1a\",\"img\":\"404-page-collection\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/404-page-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.21\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"<span class=\\\"ttm_content\\\">Show your lost website visitors a funny and lighthearted message with our 404 page template collection.<\\/span><span class=\\\"ttm_space\\\"><\\/span>\",\"setup_notes\":\"<span class=\\\"ttm_content\\\">Checkout our <a href=\\\"https:\\/\\/revolution.themepunch.com\\/documentation\\\" target=\\\"_blank\\\">Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":null,\"date\":\"2022-05-04 11:30:30\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false}},\"slides\":{\"classic-carousel\":[{\"title\":\"Slide 1\",\"img\":\"classic-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"classic-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"classic-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"classic-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"classic-carousel\\/slide5.jpg\"}],\"classicslider\":[{\"title\":\"Slide 1\",\"img\":\"classicslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"classicslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"classicslider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"classicslider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"classicslider\\/slide5.jpg\"}],\"contenttabs\":[{\"title\":\"Slide 1\",\"img\":\"contenttabs\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"contenttabs\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"contenttabs\\/slide3.jpg\"}],\"facebook-feed\":[{\"title\":\"Slide 1\",\"img\":\"facebook-feed\\/slide1.jpg\"}],\"fashion\":[{\"title\":\"Slide 1\",\"img\":\"fashion\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fashion\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fashion\\/slide5.jpg\"}],\"flickr-gallery\":[{\"title\":\"Slide 1\",\"img\":\"flickr-gallery\\/slide1.jpg\"}],\"gym\":[{\"title\":\"Slide 1\",\"img\":\"gym\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"gym\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"gym\\/slide3.jpg\"}],\"highlight-carousel\":[{\"title\":\"Slide 1\",\"img\":\"highlight-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"highlight-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"highlight-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"highlight-carousel\\/slide4.jpg\"}],\"highlight-showcase\":[{\"title\":\"Slide 1\",\"img\":\"highlight-showcase\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"highlight-showcase\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"highlight-showcase\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"highlight-showcase\\/slide4.jpg\"}],\"image-hero\":[{\"title\":\"Slide 1\",\"img\":\"imagehero\\/slide1.jpg\"}],\"insta-gallery\":[{\"title\":\"Slide 1\",\"img\":\"insta-gallery\\/slide1.jpg\"}],\"levanorestaurantbar\":[{\"title\":\"Slide 1\",\"img\":\"levanorestaurantbar\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"levanorestaurantbar\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"levanorestaurantbar\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"levanorestaurantbar\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"levanorestaurantbar\\/slide5.jpg\"}],\"mainfeature\":[{\"title\":\"Slide 1\",\"img\":\"mainfeature\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"mainfeature\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"mainfeature\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"mainfeature\\/slide4.jpg\"},{\"title\":\"Slide 7\",\"img\":\"mainfeature\\/slide7.jpg\"}],\"media-gallery-two\":[{\"title\":\"Slide 1\",\"img\":\"media-gallery-two\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"media-gallery-two\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"media-gallery-two\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"media-gallery-two\\/slide4.jpg\"},{\"title\":\"Slide 6\",\"img\":\"media-gallery-two\\/slide6.jpg\"}],\"media-carousel-autoplay\":[{\"title\":\"Slide 1\",\"img\":\"media-carousel-autoplay\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"media-carousel-autoplay\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"media-carousel-autoplay\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"media-carousel-autoplay\\/slide4.jpg\"},{\"title\":\"Slide 6\",\"img\":\"media-carousel-autoplay\\/slide6.jpg\"}],\"news-background-video\":[{\"title\":\"Slide 1\",\"img\":\"news-bg-video\\/slide1.jpg\"}],\"news-gallery\":[{\"title\":\"Slide 1\",\"img\":\"news-gallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"news-gallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"news-gallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"news-gallery\\/slide4.jpg\"}],\"news-gallery-post-based\":[{\"title\":\"Slide 1\",\"img\":\"news-gallery-post-based\\/slide1.jpg\"}],\"news-hero\":[{\"title\":\"Slide 1\",\"img\":\"news-hero\\/slide1.jpg\"}],\"news-video\":[{\"title\":\"Slide 1\",\"img\":\"news-video\\/slide1.jpg\"}],\"newsletter-hero\":[{\"title\":\"Slide 1\",\"img\":\"newsletter-hero\\/slide1.jpg\"}],\"notgeneric\":[{\"title\":\"Slide 1\",\"img\":\"notgeneric\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"notgeneric\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"notgeneric\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"notgeneric\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"notgeneric\\/slide5.jpg\"}],\"photography\":[{\"title\":\"Slide 1\",\"img\":\"photography\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"photography\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"photography\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"photography\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"photography\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"photography\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"photography\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"photography\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"photography\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"photography\\/slide10.jpg\"}],\"photography-carousel\":[{\"title\":\"Slide 1\",\"img\":\"photography-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"photography-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"photography-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"photography-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"photography-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"photography-carousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"photography-carousel\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"photography-carousel\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"photography-carousel\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"photography-carousel\\/slide10.jpg\"}],\"search-form-hero\":[{\"title\":\"Slide 1\",\"img\":\"search-form-hero\\/slide1.jpg\"}],\"showcasecarousel\":[{\"title\":\"Slide 1\",\"img\":\"showcasecarousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"showcasecarousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"showcasecarousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"showcasecarousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"showcasecarousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"showcasecarousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"showcasecarousel\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"showcasecarousel\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"showcasecarousel\\/slide9.jpg\"}],\"sports-hero\":[{\"title\":\"Slide 1\",\"img\":\"sportshero\\/slide1.jpg\"}],\"twitter-feed\":[{\"title\":\"Slide 1\",\"img\":\"twitter-feed\\/slide1.jpg\"}],\"vimeo-gallery\":[{\"title\":\"Slide 1\",\"img\":\"vimeo-gallery\\/slide1.jpg\"}],\"vimeohero\":[{\"title\":\"Slide 1\",\"img\":\"vimeohero\\/slide1.jpg\"}],\"web-product-dark\":[{\"title\":\"Slide 1\",\"img\":\"web-product-dark\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"web-product-dark\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"web-product-dark\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"web-product-dark\\/slide4.jpg\"}],\"web-product-dark-hero\":[{\"title\":\"Slide 1\",\"img\":\"web-product-dark-hero\\/slide1.jpg\"}],\"web-product-light-hero\":[{\"title\":\"Slide 1\",\"img\":\"web-product-light-hero\\/slide1.jpg\"}],\"webproductlight\":[{\"title\":\"Slide 1\",\"img\":\"webproductlight\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"webproductlight\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"webproductlight\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"webproductlight\\/slide4.jpg\"}],\"youtube-gallery\":[{\"title\":\"Slide 1\",\"img\":\"youtube-gallery\\/slide1.jpg\"}],\"youtubehero\":[{\"title\":\"Slide 1\",\"img\":\"youtubehero\\/slide1.jpg\"}],\"scroll-effect\":[{\"title\":\"Slide 1\",\"img\":\"scrolleffect\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"scrolleffect\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"scrolleffect\\/slide3.jpg\"}],\"content-zoom\":[{\"title\":\"Slide 1\",\"img\":\"contentzoom\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"contentzoom\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"contentzoom\\/slide3.jpg\"}],\"food-carousel\":[{\"title\":\"Slide 1\",\"img\":\"foodcarousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"foodcarousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"foodcarousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"foodcarousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"foodcarousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"foodcarousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"foodcarousel\\/slide7.jpg\"}],\"rotating-words\":[{\"title\":\"Slide 1\",\"img\":\"rotatingwords\\/slide1.jpg\"}],\"travel-static-captions\":[{\"title\":\"Slide 1\",\"img\":\"travel-static-captions\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"travel-static-captions\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"travel-static-captions\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"travel-static-captions\\/slide4.jpg\"}],\"concept\":[{\"title\":\"Slide 1\",\"img\":\"concept\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"concept\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"concept\\/slide3.jpg\"}],\"fullscreen-button\":[{\"title\":\"Slide 1\",\"img\":\"fullscreen-button\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullscreen-button\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fullscreen-button\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fullscreen-button\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fullscreen-button\\/slide5.jpg\"}],\"creativefreedom\":[{\"title\":\"Slide 1\",\"img\":\"creativefreedom\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creativefreedom\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creativefreedom\\/slide3.jpg\"}],\"parallaxscene\":[{\"title\":\"Slide 1\",\"img\":\"parallaxscene\\/slide1.jpg\"}],\"slidingoverlays\":[{\"title\":\"Slide 1\",\"img\":\"slidingoverlays\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"slidingoverlays\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"slidingoverlays\\/slide3.jpg\"}],\"web-product-light-hero-3d\":[{\"title\":\"Slide 1\",\"img\":\"web-product-light-hero-3d\\/slide1.jpg\"}],\"woobig\":[{\"title\":\"Slide 1\",\"img\":\"woobig\\/slide1.jpg\"}],\"woocommercesmall\":[{\"title\":\"Slide 1\",\"img\":\"woocommercesmall\\/slide1.jpg\"}],\"finedining\":[{\"title\":\"Slide 1\",\"img\":\"finedining\\/slide1.jpg\"}],\"agency-intro\":[{\"title\":\"Slide 1\",\"img\":\"agency-intro\\/slide1.jpg\"}],\"ourteam\":[{\"title\":\"Slide 1\",\"img\":\"ourteam\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"ourteam\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"ourteam\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"ourteam\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"ourteam\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"ourteam\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"ourteam\\/slide7.jpg\"}],\"our-team-carousel\":[{\"title\":\"Slide 1\",\"img\":\"ourteamcarousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"ourteamcarousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"ourteamcarousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"ourteamcarousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"ourteamcarousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"ourteamcarousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"ourteamcarousel\\/slide7.jpg\"}],\"betteryoutube\":[{\"title\":\"Slide 1\",\"img\":\"betteryoutube\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"betteryoutube\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"betteryoutube\\/slide3.jpg\"}],\"agencywebsiteheader\":[{\"title\":\"Slide 1\",\"img\":\"agencywebsiteheader\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"agencywebsiteheader\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"agencywebsiteheader\\/slide3.jpg\"}],\"comingsoon\":[{\"title\":\"Slide 1\",\"img\":\"comingsoon\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"comingsoon\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"comingsoon\\/slide3.jpg\"}],\"snowscene\":[{\"title\":\"Slide 1\",\"img\":\"snowscene\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"snowscene\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"snowscene\\/slide3.jpg\"}],\"rockband\":[{\"title\":\"Slide 1\",\"img\":\"rockband\\/slide1.jpg\"}],\"sleeklandingpage\":[{\"title\":\"Slide 1\",\"img\":\"sleeklandingpage\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"sleeklandingpage\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"sleeklandingpage\\/slide3.jpg\"}],\"applandingpage\":[{\"title\":\"Slide 1\",\"img\":\"applandingpage\\/slide1.jpg\"}],\"deskscene\":[{\"title\":\"Slide 1\",\"img\":\"deskscene\\/slide1.jpg\"}],\"cleannewsslider\":[{\"title\":\"Slide 1\",\"img\":\"cleannewsslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cleannewsslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cleannewsslider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cleannewsslider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"cleannewsslider\\/slide5.jpg\"}],\"imagegallery\":[{\"title\":\"Slide 1\",\"img\":\"imagegallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"imagegallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"imagegallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"imagegallery\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"imagegallery\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"imagegallery\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"imagegallery\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"imagegallery\\/slide8.jpg\"}],\"standard-wp-gallery\":[{\"title\":\"Slide 1\",\"img\":\"standard-wp-gallery\\/slide1.jpg\"}],\"clean-news-post-based\":[{\"title\":\"Slide 1\",\"img\":\"clean-news-post-based\\/slide1.jpg\"}],\"interactivewhiteboard\":[{\"title\":\"Slide 1\",\"img\":\"interactivewhiteboard\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"interactivewhiteboard\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"interactivewhiteboard\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"interactivewhiteboard\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"interactivewhiteboard\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"interactivewhiteboard\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"interactivewhiteboard\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"interactivewhiteboard\\/slide8.jpg\"}],\"innovation\":[{\"title\":\"Slide 1\",\"img\":\"innovation\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"innovation\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"innovation\\/slide3.jpg\"}],\"dark-fullsite-block-menu\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-menu\\/slide1.jpg\"}],\"dark-fullsite-block-1\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-1\\/slide1.jpg\"}],\"dark-fullsite-block-2-about\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-2-about\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"dark-fullsite-block-2-about\\/slide2.jpg\"}],\"dark-fullsite-block-3-services\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-3-services\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"dark-fullsite-block-3-services\\/slide2.jpg\"}],\"dark-fullsite-block-4-products\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-4-products\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"dark-fullsite-block-4-products\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"dark-fullsite-block-4-products\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"dark-fullsite-block-4-products\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"dark-fullsite-block-4-products\\/slide5.jpg\"}],\"dark-fullsite-block-5-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-5-testimonials\\/slide1.jpg\"}],\"dark-fullsite-block-6-callout\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-6-callout\\/slide1.jpg\"}],\"dark-fullsite-block-7-footer\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-7-footer\\/slide1.jpg\"}],\"fullsite-block-menu\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-menu\\/slide1.jpg\"}],\"fullsite-block1\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block1\\/slide1.jpg\"}],\"fullsite-block-2-about\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-2-about\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullsite-block-2-about\\/slide2.jpg\"}],\"fullsite-block-3-services\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-3-services\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullsite-block-3-services\\/slide2.jpg\"}],\"fullsite-block-4-products\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-4-products\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullsite-block-4-products\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fullsite-block-4-products\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fullsite-block-4-products\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fullsite-block-4-products\\/slide5.jpg\"}],\"fullsite-block-5-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-5-testimonials\\/slide1.jpg\"}],\"fullsite-block-6-callout\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-6-callout\\/slide1.jpg\"}],\"fullsite-block-7-footer\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-7-footer\\/slide1.jpg\"}],\"techjournal\":[{\"title\":\"Slide 1\",\"img\":\"techjournal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"techjournal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"techjournal\\/slide3.jpg\"}],\"cardealership\":[{\"title\":\"Slide 1\",\"img\":\"cardealership\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cardealership\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cardealership\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cardealership\\/slide4.jpg\"}],\"fullscreenmenu\":[{\"title\":\"Slide 1\",\"img\":\"fullscreenmenu\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullscreenmenu\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fullscreenmenu\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fullscreenmenu\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fullscreenmenu\\/slide5.jpg\"}],\"creativefrontpage\":[{\"title\":\"Slide 1\",\"img\":\"creativefrontpage\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creativefrontpage\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creativefrontpage\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creativefrontpage\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creativefrontpage\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"creativefrontpage\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"creativefrontpage\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"creativefrontpage\\/slide8.jpg\"}],\"websitebuilder-menu\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-menu\\/slide1.jpg\"}],\"websitebuilder-hero\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-hero\\/slide1.jpg\"}],\"websitebuilder-clients\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-clients\\/slide1.jpg\"}],\"websitebuilder-services\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-services\\/slide1.jpg\"}],\"websitebuilder-discover\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-discover\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"websitebuilder-discover\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"websitebuilder-discover\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"websitebuilder-discover\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"websitebuilder-discover\\/slide5.jpg\"}],\"websitebuilder-slider\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"websitebuilder-slider\\/slide2.jpg\"}],\"websitebuilder-calltoaction\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-calltoaction\\/slide1.jpg\"}],\"websitebuilder-footer\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-footer\\/slide1.jpg\"}],\"focusparallax\":[{\"title\":\"Slide 1\",\"img\":\"focusparallax\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"focusparallax\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"focusparallax\\/slide3.jpg\"}],\"duotone\":[{\"title\":\"Slide 1\",\"img\":\"duotone\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"duotone\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"duotone\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"duotone\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"duotone\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"duotone\\/slide6.jpg\"}],\"r_menu\":[{\"title\":\"Slide 1\",\"img\":\"r_menu\\/slide1.jpg\"}],\"rhero\":[{\"title\":\"Slide 1\",\"img\":\"r_hero\\/slide1.jpg\"}],\"r_about\":[{\"title\":\"Slide 1\",\"img\":\"r_about\\/slide1.jpg\"}],\"r_products\":[{\"title\":\"Slide 1\",\"img\":\"r_products\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"r_products\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"r_products\\/slide3.jpg\"}],\"r_info\":[{\"title\":\"Slide 1\",\"img\":\"r_info\\/slide1.jpg\"}],\"inspirationheader\":[{\"title\":\"Slide 1\",\"img\":\"inspirationheader\\/slide1.jpg\"}],\"magazineposts\":[{\"title\":\"Slide 1\",\"img\":\"magazineposts\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"magazineposts\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"magazineposts\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"magazineposts\\/slide4.jpg\"}],\"explorationheader\":[{\"title\":\"Slide 1\",\"img\":\"explorationheader\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"explorationheader\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"explorationheader\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"explorationheader\\/slide4.jpg\"}],\"typewritereffect\":[{\"title\":\"Slide 1\",\"img\":\"typewritereffect\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"typewritereffect\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"typewritereffect\\/slide3.jpg\"}],\"blendmodeheader\":[{\"title\":\"Slide 1\",\"img\":\"blendmodeheader\\/slide1.jpg\"}],\"themeplicity_menu\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_menu\\/slide1.jpg\"}],\"themeplicity_header\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_header\\/slide1.jpg\"}],\"themeplicity_offer\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_offer\\/slide1.jpg\"}],\"themeplicity_whatwedo\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_whatwedo\\/slide1.jpg\"}],\"themeplicity_projects\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_projects\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"themeplicity_projects\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"themeplicity_projects\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"themeplicity_projects\\/slide4.jpg\"},{\"title\":\"themeplicity_projects\\/slide5.jpg\",\"img\":\"Slide 5\"}],\"themeplicity_whatsgreat\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_whatsgreat\\/slide1.jpg\"}],\"themeplicity_tables\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_tables\\/slide1.jpg\"}],\"themeplicity_contactform\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_contactform\\/slide1.jpg\"}],\"themeplicity_footer\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_footer\\/slide1.jpg\"}],\"NiceAndClean_Menu\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_Menu\\/slide1.jpg\"}],\"NiceAndClean_Header\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_Header\\/slide1.jpg\"}],\"NiceAndClean_Services\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_Services\\/slide1.jpg\"}],\"NiceAndClean_About\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_About\\/slide1.jpg\"}],\"niceandclean_video\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_video\\/slide1.jpg\"}],\"niceandclean_highlights\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_highlights\\/slide1.jpg\"}],\"NiceAndClean_Projects\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_Projects\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"NiceAndClean_Projects\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"NiceAndClean_Projects\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"NiceAndClean_Projects\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"NiceAndClean_Projects\\/slide5.jpg\"}],\"niceandclean_textblocks\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_textblocks\\/slide1.jpg\"}],\"niceandclean_callout\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_callout\\/slide1.jpg\"}],\"niceandclean_footer\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_footer\\/slide1.jpg\"}],\"80s\":[{\"title\":\"Slide 1\",\"img\":\"80s\\/slide1.jpg\"}],\"blurslider\":[{\"title\":\"Slide 1\",\"img\":\"blurslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"blurslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"blurslider\\/slide3.jpg\"}],\"ComingSoonAddon\":[{\"title\":\"Slide 1\",\"img\":\"ComingSoonAddon\\/slide1.jpg\"}],\"snowaddon\":[{\"title\":\"Slide 1\",\"img\":\"snowaddon\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"snowaddon\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"snowaddon\\/slide3.jpg\"}],\"particle-effect-one\":[{\"title\":\"Slide 1\",\"img\":\"particle-effect-one\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"particle-effect-one\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"particle-effect-one\\/slide3.jpg\"}],\"particle-effect-two\":[{\"title\":\"Slide 1\",\"img\":\"particle-effect-two\\/slide1.jpg\"}],\"particle-effect-three\":[{\"title\":\"Slide 1\",\"img\":\"particle-effect-three\\/slide1.jpg\"}],\"portfolioviewer\":[{\"title\":\"Slide 1\",\"img\":\"portfolioviewer\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"portfolioviewer\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"portfolioviewer\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"portfolioviewer\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"portfolioviewer\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"portfolioviewer\\/slide6.jpg\"}],\"appshowcase\":[{\"title\":\"Slide 1\",\"img\":\"appshowcase\\/slide1.jpg\"}],\"gravitydesign\":[{\"title\":\"Slide 1\",\"img\":\"gravitydesign\\/slide1.jpg\"}],\"404errorpage\":[{\"title\":\"Slide 1\",\"img\":\"404errorpage\\/slide1.jpg\"}],\"carouselgallery\":[{\"title\":\"Slide 1\",\"img\":\"carouselgallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"carouselgallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"carouselgallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"carouselgallery\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"carouselgallery\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"carouselgallery\\/slide6.jpg\"}],\"filmstrip\":[{\"title\":\"Slide 1\",\"img\":\"filmstrip\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"filmstrip\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"filmstrip\\/slide3.jpg\"}],\"spaceopera\":[{\"title\":\"Slide 1\",\"img\":\"spaceopera\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"spaceopera\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"spaceopera\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"spaceopera\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"spaceopera\\/slide5.jpg\"}],\"websiteintro\":[{\"title\":\"Slide 1\",\"img\":\"websiteintro\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"websiteintro\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"websiteintro\\/slide3.jpg\"}],\"maskshowcase\":[{\"title\":\"Slide 1\",\"img\":\"maskshowcase\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"maskshowcase\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"maskshowcase\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"maskshowcase\\/slide4.jpg\"}],\"parallaxzoomslices\":[{\"title\":\"Slide 1\",\"img\":\"parallaxzoomslices\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"parallaxzoomslices\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"parallaxzoomslices\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"parallaxzoomslices\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"parallaxzoomslices\\/slide5.jpg\"}],\"doubleexposureeffect\":[{\"title\":\"Slide 1\",\"img\":\"doubleexposureeffect\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"doubleexposureeffect\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"doubleexposureeffect\\/slide3.jpg\"}],\"mountainparallaxheader\":[{\"title\":\"Slide 1\",\"img\":\"mountainparallaxheader\\/slide1.jpg\"}],\"goodnewsmenu\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsmenu\\/slide1.jpg\"}],\"goodnewsheader\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsheader\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"goodnewsheader\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"goodnewsheader\\/slide3.jpg\"}],\"goodnewswhatshot\":[{\"title\":\"Slide 1\",\"img\":\"goodnewswhatshot\\/slide1.jpg\"}],\"goodnewsfeatured\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsfeatured\\/slide1.jpg\"}],\"goodnewsspotlight\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsspotlight\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"goodnewsspotlight\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"goodnewsspotlight\\/slide3.jpg\"}],\"goodnewscarousel\":[{\"title\":\"Slide 1\",\"img\":\"goodnewscarousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"goodnewscarousel\\/slide2.jpg\"}],\"goodnewscallout\":[{\"title\":\"Slide 1\",\"img\":\"goodnewscallout\\/slide1.jpg\"}],\"goodnewsfooter\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsfooter\\/slide1.jpg\"}],\"goodnewsmenuback\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsmenuback\\/slide1.jpg\"}],\"goodnewsblogheader\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsblogheader\\/slide1.jpg\"}],\"goodnewsblogcontent\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsblogcontent\\/slide1.jpg\"}],\"goodnewstestimonials\":[{\"title\":\"Slide 1\",\"img\":\"goodnewstestimonials\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"goodnewstestimonials\\/slide2.jpg\"}],\"goodnewsblogfooter\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsblogfooter\\/slide1.jpg\"}],\"beforeafterslider\":[{\"title\":\"Slide 1\",\"img\":\"beforeafterslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"beforeafterslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"beforeafterslider\\/slide3.jpg\"}],\"productshowcase\":[{\"title\":\"Slide 1\",\"img\":\"productshowcase\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"productshowcase\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"productshowcase\\/slide3.jpg\"}],\"overexposuretransition\":[{\"title\":\"Slide 1\",\"img\":\"overexposuretransition\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"overexposuretransition\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"overexposuretransition\\/slide3.jpg\"}],\"parallaxscroll\":[{\"title\":\"Slide 1\",\"img\":\"parallaxscroll\\/slide1.jpg\"}],\"techco-menu\":[{\"title\":\"Slide 1\",\"img\":\"techco-menu\\/slide1.jpg\"}],\"techco-header\":[{\"title\":\"Slide 1\",\"img\":\"techco-header\\/slide1.jpg\"}],\"techco-about\":[{\"title\":\"Slide 1\",\"img\":\"techco-about\\/slide1.jpg\"}],\"techco-services\":[{\"title\":\"Slide 1\",\"img\":\"techco-services\\/slide1.jpg\"}],\"techco-video\":[{\"title\":\"Slide 1\",\"img\":\"techco-video\\/slide1.jpg\"}],\"techco-prices\":[{\"title\":\"Slide 1\",\"img\":\"techco-prices\\/slide1.jpg\"}],\"techco-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"techco-testimonials\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"techco-testimonials\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"techco-testimonials\\/slide3.jpg\"}],\"techco-footer\":[{\"title\":\"Slide 1\",\"img\":\"techco-footer\\/slide1.jpg\"}],\"weather\":[{\"title\":\"Slide 1\",\"img\":\"weather\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"weather\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"weather\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"weather\\/slide4.jpg\"}],\"360panorama\":[{\"title\":\"Slide 1\",\"img\":\"360panorama\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"360panorama\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"360panorama\\/slide3.jpg\"}],\"duotone-add-on\":[{\"title\":\"Slide 1\",\"img\":\"duotone-add-on\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"duotone-add-on\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"duotone-add-on\\/slide3.jpg\"}],\"reveal-add-on\":[{\"title\":\"Slide 1\",\"img\":\"reveal-add-on\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"reveal-add-on\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"reveal-add-on\\/slide3.jpg\"}],\"band-tour-poster\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/band-tour-poster\\/slide1.png\"}],\"brewery-slider\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/brewery-slider\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/brewery-slider\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/brewery-slider\\/slide3.png\"}],\"burgerbar\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/burgerbar\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/burgerbar\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/burgerbar\\/slide3.png\"}],\"burger-bar-portrait\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/burger-bar-portrait\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/burger-bar-portrait\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/burger-bar-portrait\\/slide3.png\"}],\"car-rent\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/car-rent\\/slide1.png\"}],\"coffee\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/coffee\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/coffee\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/coffee\\/slide3.png\"}],\"holiday-advert\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/holiday-advert\\/slide1.png\"}],\"iphone-cases-light\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/iphone-cases-light\\/slide1.png\"}],\"medical\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/medical\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/medical\\/slide2.png\"}],\"mexican-grill\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/mexican-grill\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/mexican-grill\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/mexican-grill\\/slide3.png\"}],\"mobile-retail-slider\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/mobile-retail-slider\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/mobile-retail-slider\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/mobile-retail-slider\\/slide3.png\"}],\"money-exchange\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/money-exchange\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/money-exchange\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/money-exchange\\/slide3.png\"}],\"restaurant-menu-first-screen\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/restaurant-menu-first-screen\\/slide1.png\"}],\"restaurant-menu-second-screen\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/restaurant-menu-second-screen\\/slide1.png\"}],\"restaurant-menu-third-screen\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/restaurant-menu-third-screen\\/slide1.png\"}],\"shoes-store\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/shoes-store\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/shoes-store\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/shoes-store\\/slide3.png\"}],\"supermarket-products\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/supermarket-products\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/supermarket-products\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/supermarket-products\\/slide3.png\"},{\"title\":\"Slide 4\",\"img\":\"smartcontent\\/supermarket-products\\/slide4.png\"},{\"title\":\"Slide 5\",\"img\":\"smartcontent\\/supermarket-products\\/slide5.png\"}],\"travel-insurance\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/travel-insurance\\/slide1.png\"}],\"cryptoslider\":[{\"title\":\"Slide 1\",\"img\":\"cryptoslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cryptoslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cryptoslider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cryptoslider\\/slide4.jpg\"}],\"immersion_header\":[{\"title\":\"Slide 1\",\"img\":\"immersion_header\\/slide1.jpg\"}],\"immersion-mountains\":[{\"title\":\"Slide 1\",\"img\":\"immersion-mountains\\/slide1.jpg\"}],\"immersion-product\":[{\"title\":\"Slide 1\",\"img\":\"immersion-product\\/slide1.jpg\"}],\"immersion-design\":[{\"title\":\"Slide 1\",\"img\":\"immersion-design\\/slide1.jpg\"}],\"immersion-photography\":[{\"title\":\"Slide 1\",\"img\":\"immersion-photography\\/slide1.jpg\"}],\"immersion-grid\":[{\"title\":\"Slide 1\",\"img\":\"immersion-grid\\/slide1.jpg\"}],\"funkyslider\":[{\"title\":\"Slide 1\",\"img\":\"funkyslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"funkyslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"funkyslider\\/slide3.jpg\"}],\"clearview_menu\":[{\"title\":\"Slide 1\",\"img\":\"clearview_menu\\/slide1.jpg\"}],\"clearview_header\":[{\"title\":\"Slide 1\",\"img\":\"clearview_header\\/slide1.jpg\"}],\"clearview_mission\":[{\"title\":\"Slide 1\",\"img\":\"clearview_mission\\/slide1.jpg\"}],\"clear-view-slider\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"clear-view-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"clear-view-slider\\/slide3.jpg\"}],\"clear-view-news\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-news\\/slide1.jpg\"}],\"clear-view-clients\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-clients\\/slide1.jpg\"}],\"clear-view-contact\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-contact\\/slide1.jpg\"}],\"clear-view-single-menu\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-menu\\/slide1.jpg\"}],\"clear-view-single-header\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-header\\/slide1.jpg\"}],\"clear-view-single-media\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-media\\/slide1.jpg\"}],\"clear-view-single-more\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-more\\/slide1.jpg\"}],\"clear-view-single-contact\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-contact\\/slide1.jpg\"}],\"cleanlandingpage\":[{\"title\":\"Slide 1\",\"img\":\"cleanlandingpage\\/slide1.jpg\"}],\"clearcut\":[{\"title\":\"Slide 1\",\"img\":\"clearcut\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"clearcut\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"clearcut\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"clearcut\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"clearcut\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"clearcut\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"clearcut\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"clearcut\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"clearcut\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"clearcut\\/slide10.jpg\"}],\"wonderstruck_menu\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck_menu\\/slide1.jpg\"}],\"wonderstruck_header\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck_header\\/slide1.jpg\"}],\"wonderstruck_about\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck_about\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"wonderstruck_about\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"wonderstruck_about\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"wonderstruck_about\\/slide4.jpg\"}],\"wonderstruck-works\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck-works\\/slide1.jpg\"}],\"wonderstruck-contact\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck-contact\\/slide1.jpg\"}],\"bubblemorph\":[{\"title\":\"Slide 1\",\"img\":\"bubblemorph\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"bubblemorph\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"bubblemorph\\/slide3.jpg\"}],\"distortionaddon\":[{\"title\":\"Slide 1\",\"img\":\"distortionaddon\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"distortionaddon\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"distortionaddon\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"distortionaddon\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"distortionaddon\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"distortionaddon\\/slide6.jpg\"}],\"clubflyer\":[{\"title\":\"Slide 1\",\"img\":\"clubflyer\\/slide1.jpg\"}],\"paintbrushaddon\":[{\"title\":\"Slide 1\",\"img\":\"paintbrushaddon\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"paintbrushaddon\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"paintbrushaddon\\/slide3.jpg\"}],\"parallax_header\":[{\"title\":\"Slide 1\",\"img\":\"parallax_header\\/slide1.jpg\"}],\"parallax_content\":[{\"title\":\"Slide 1\",\"img\":\"parallax_content\\/slide1.jpg\"}],\"parallax_footer\":[{\"title\":\"Slide 1\",\"img\":\"parallax_footer\\/slide1.jpg\"}],\"le-chef-menu\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-menu\\/slide1.jpg\"}],\"le-chef-header\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-header\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"le-chef-header\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"le-chef-header\\/slide3.jpg\"}],\"le-chef-philosophy\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-philosophy\\/slide1.jpg\"}],\"le-chef-food\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-food\\/slide1.jpg\"}],\"le-chef-la-carte\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-la-carte\\/slide1.jpg\"}],\"le-chef-footer\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-footer\\/slide1.jpg\"}],\"news-magazine-slider\":[{\"title\":\"Slide 1\",\"img\":\"news-magazine-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"news-magazine-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"news-magazine-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"news-magazine-slider\\/slide4.jpg\"}],\"real-estate-slider\":[{\"title\":\"Slide 1\",\"img\":\"real-estate-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"real-estate-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"real-estate-slider\\/slide3.jpg\"}],\"fashion-header\":[{\"title\":\"Slide 1\",\"img\":\"fashion-header\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion-header\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion-header\\/slide3.jpg\"}],\"seasonaloffer\":[{\"title\":\"Slide 1\",\"img\":\"seasonaloffer\\/slide1.jpg\"}],\"barber-shop-header\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-header\\/slide1.jpg\"}],\"barber-shop-mobile-menu\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-mobile-menu\\/slide1.jpg\"}],\"barber-shop-first-screen\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-first-screen\\/slide1.jpg\"}],\"barber-shop-about\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-about\\/slide1.jpg\"}],\"barber-shop-services\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-services\\/slide1.jpg\"}],\"barber-shop-barbers\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-barbers\\/slide1.jpg\"}],\"barber-shop-contacts\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-contacts\\/slide1.jpg\"}],\"barber-shop-footer\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-footer\\/slide1.jpg\"}],\"fitness-club-template\":[{\"title\":\"Slide 1\",\"img\":\"fitness-club-template\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fitness-club-template\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fitness-club-template\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fitness-club-template\\/slide4.jpg\"}],\"soccer-school\":[{\"title\":\"Slide 1\",\"img\":\"soccer-school\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"soccer-school\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"soccer-school\\/slide3.jpg\"}],\"music-band-template\":[{\"title\":\"Slide 1\",\"img\":\"music-band-template\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"music-band-template\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"music-band-template\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"music-band-template\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"music-band-template\\/slide5.jpg\"}],\"restaurant-menu\":[{\"title\":\"Slide 1\",\"img\":\"restaurant-menu\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"restaurant-menu\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"restaurant-menu\\/slide3.jpg\"}],\"cinematic-slider\":[{\"title\":\"Slide 1\",\"img\":\"cinematic-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cinematic-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cinematic-slider\\/slide3.jpg\"}],\"3d-parallax-cubes\":[{\"title\":\"Slide 1\",\"img\":\"3d-parallax-cubes\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"3d-parallax-cubes\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"3d-parallax-cubes\\/slide3.jpg\"}],\"medicare-menu\":[{\"title\":\"Slide 1\",\"img\":\"medicare-menu\\/slide1.jpg\"}],\"medicare-header\":[{\"title\":\"Slide 1\",\"img\":\"medicare-header\\/slide1.jpg\"}],\"medicare-about\":[{\"title\":\"Slide 1\",\"img\":\"medicare-about\\/slide1.jpg\"}],\"medicare-highlight\":[{\"title\":\"Slide 1\",\"img\":\"medicare-highlight\\/slide1.jpg\"}],\"medicare-services\":[{\"title\":\"Slide 1\",\"img\":\"medicare-services\\/slide1.jpg\"}],\"medicare-doctors\":[{\"title\":\"Slide 1\",\"img\":\"medicare-doctors\\/slide1.jpg\"}],\"medicare-research\":[{\"title\":\"Slide 1\",\"img\":\"medicare-research\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"medicare-research\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"medicare-research\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"medicare-research\\/slide4.jpg\"}],\"medicare-whychoose\":[{\"title\":\"Slide 1\",\"img\":\"medicare-whychoose\\/slide1.jpg\"}],\"medicare-contact\":[{\"title\":\"Slide 1\",\"img\":\"medicare-contact\\/slide1.jpg\"}],\"medicare-footer\":[{\"title\":\"Slide 1\",\"img\":\"medicare-footer\\/slide1.jpg\"}],\"coffee-menu\":[{\"title\":\"Slide 1\",\"img\":\"coffee-menu\\/slide1.jpg\"}],\"coffee-header\":[{\"title\":\"Slide 1\",\"img\":\"coffee-header\\/slide1.jpg\"}],\"coffee-philosophy\":[{\"title\":\"Slide 1\",\"img\":\"coffee-philosophy\\/slide1.jpg\"}],\"coffee-carte\":[{\"title\":\"Slide 1\",\"img\":\"coffee-carte\\/slide1.jpg\"}],\"coffee-teaser\":[{\"title\":\"Slide 1\",\"img\":\"coffee-teaser\\/slide1.jpg\"}],\"coffee-findus\":[{\"title\":\"Slide 1\",\"img\":\"coffee-findus\\/slide1.jpg\"}],\"coffee-footer\":[{\"title\":\"Slide 1\",\"img\":\"coffee-footer\\/slide1.jpg\"}],\"minimal-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"minimal-portfolio\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"minimal-portfolio\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"minimal-portfolio\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"minimal-portfolio\\/slide4.jpg\"}],\"minimal-portfolio-modal\":[{\"title\":\"Slide 1\",\"img\":\"minimal-portfolio-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"minimal-portfolio-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"minimal-portfolio-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"minimal-portfolio-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"minimal-portfolio-modal\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"minimal-portfolio-modal\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"minimal-portfolio-modal\\/slide7.jpg\"}],\"angled-menu\":[{\"title\":\"Slide 1\",\"img\":\"angled-menu\\/slide1.jpg\"}],\"angled-header\":[{\"title\":\"Slide 1\",\"img\":\"angled-header\\/slide1.jpg\"}],\"angled-news\":[{\"title\":\"Slide 1\",\"img\":\"angled-news\\/slide1.jpg\"}],\"angled-services\":[{\"title\":\"Slide 1\",\"img\":\"angled-services\\/slide1.jpg\"}],\"angled-success\":[{\"title\":\"Slide 1\",\"img\":\"angled-success\\/slide1.jpg\"}],\"angled-footer\":[{\"title\":\"Slide 1\",\"img\":\"angled-footer\\/slide1.jpg\"}],\"angled-content-modal\":[{\"title\":\"Slide 1\",\"img\":\"angled-content-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"angled-content-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"angled-content-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"angled-content-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"angled-content-modal\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"angled-content-modal\\/slide6.jpg\"}],\"big-bold-menu\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-menu\\/slide1.jpg\"}],\"big-bold-header\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-header\\/slide1.jpg\"}],\"big-bold-content\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-content\\/slide1.jpg\"}],\"big-bold-blog\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-blog\\/slide1.jpg\"}],\"big-bold-highlight\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-highlight\\/slide1.jpg\"}],\"big-bold-footer\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-footer\\/slide1.jpg\"}],\"Retouch\":[{\"title\":\"Slide 1\",\"img\":\"Retouch\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Retouch\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Retouch\\/slide3.jpg\"}],\"tech-slider\":[{\"title\":\"Slide 1\",\"img\":\"tech-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"tech-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"tech-slider\\/slide3.jpg\"}],\"peak-header\":[{\"title\":\"Slide 1\",\"img\":\"peak-header\\/slide1.jpg\"}],\"peak-about\":[{\"title\":\"Slide 1\",\"img\":\"peak-about\\/slide1.jpg\"}],\"peak-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"peak-portfolio\\/slide1.jpg\"}],\"peak-footer\":[{\"title\":\"Slide 1\",\"img\":\"peak-footer\\/slide1.jpg\"}],\"portfolio-welcome\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-welcome\\/slide1.jpg\"}],\"portfolio-about\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-about\\/slide1.jpg\"}],\"portfolio-works-title\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-works-title\\/slide1.jpg\"}],\"portfolio-works-content\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-works-content\\/slide1.jpg\"}],\"portfolio-contacts\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-contacts\\/slide1.jpg\"}],\"App-Studio-Welcome\":[{\"title\":\"Slide 1\",\"img\":\"App-Studio-Welcome\\/slide1.jpg\"}],\"App-Studio-Services\":[{\"title\":\"Slide 1\",\"img\":\"App-Studio-Services\\/slide1.jpg\"}],\"App-Studio-About\":[{\"title\":\"Slide 1\",\"img\":\"App-Studio-About\\/slide1.jpg\"}],\"App-Studio-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"App-Studio-Contacts\\/slide1.jpg\"}],\"cube-animation\":[{\"title\":\"Slide 1\",\"img\":\"cube-animation\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cube-animation\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cube-animation\\/slide3.jpg\"}],\"basic-menu\":[{\"title\":\"Slide 1\",\"img\":\"basic-menu\\/slide1.jpg\"}],\"basic-header\":[{\"title\":\"Slide 1\",\"img\":\"basic-header\\/slide1.jpg\"}],\"basic-content\":[{\"title\":\"Slide 1\",\"img\":\"basic-content\\/slide1.jpg\"}],\"basic-carousel\":[{\"title\":\"Slide 1\",\"img\":\"basic-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"basic-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"basic-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"basic-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"basic-carousel\\/slide5.jpg\"}],\"basic-callout\":[{\"title\":\"Slide 1\",\"img\":\"basic-callout\\/slide1.jpg\"}],\"basic-grid\":[{\"title\":\"Slide 1\",\"img\":\"basic-grid\\/slide1.jpg\"}],\"basic-video-block\":[{\"title\":\"Slide 1\",\"img\":\"basic-video-block\\/slide1.jpg\"}],\"basic-footer\":[{\"title\":\"Slide 1\",\"img\":\"basic-footer\\/slide1.jpg\"}],\"basic-lightbox\":[{\"title\":\"Slide 1\",\"img\":\"basic-lightbox\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"basic-lightbox\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"basic-lightbox\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"basic-lightbox\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"basic-lightbox\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"basic-lightbox\\/slide6.jpg\"}],\"nature-slider\":[{\"title\":\"Slide 1\",\"img\":\"nature-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"nature-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"nature-slider\\/slide3.jpg\"}],\"art-gallery\":[{\"title\":\"Slide 1\",\"img\":\"art-gallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"art-gallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"art-gallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"art-gallery\\/slide4.jpg\"}],\"Construction-Header\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Header\\/slide1.jpg\"}],\"Construction-Home\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Home\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Construction-Home\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Construction-Home\\/slide3.jpg\"}],\"Construction-Projects\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Projects\\/slide1.jpg\"}],\"Construction-History\":[{\"title\":\"Slide 1\",\"img\":\"Construction-History\\/slide1.jpg\"}],\"Construction-Services\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Services\\/slide1.jpg\"}],\"Construction-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Contacts\\/slide1.jpg\"}],\"404-Error-Space-Theme\":[{\"title\":\"Slide 1\",\"img\":\"404-Error-Space-Theme\\/slide1.jpg\"}],\"landing-page-hero\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-hero\\/slide1.jpg\"}],\"landing-page-features\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-features\\/slide1.jpg\"}],\"landing-page-callout\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-callout\\/slide1.jpg\"}],\"landing-page-content\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-content\\/slide1.jpg\"}],\"landing-page-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-testimonials\\/slide1.jpg\"}],\"landing-page-call-to-action\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-call-to-action\\/slide1.jpg\"}],\"landing-page-help\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-help\\/slide1.jpg\"}],\"landing-page-footer\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-footer\\/slide1.jpg\"}],\"landing-page-price-modal\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-price-modal\\/slide1.jpg\"}],\"energy-drinks-hero\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-hero\\/slide1.jpg\"}],\"energy-drinks-about\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-about\\/slide1.jpg\"}],\"energy-drinks-product\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-product\\/slide1.jpg\"}],\"energy-drinks-product-2\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-product-2\\/slide1.jpg\"}],\"energy-drinks-product-3\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-product-3\\/slide1.jpg\"}],\"energy-drinks-order\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-order\\/slide1.jpg\"}],\"energy-drinks-footer\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-footer\\/slide1.jpg\"}],\"energy-drinks-modal\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-modal\\/slide1.jpg\"}],\"Corporate-Header\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Header\\/slide1.jpg\"}],\"Corporate-Welcome-Screen\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Welcome-Screen\\/slide1.jpg\"}],\"Corporate-About\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-About\\/slide1.jpg\"}],\"Corporate-Portfolio\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Portfolio\\/slide1.jpg\"}],\"Corporate-Chart\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Chart\\/slide1.jpg\"}],\"Corporate-News\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-News\\/slide1.jpg\"}],\"Corporate-Hiring\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-News\\/slide1.jpg\"}],\"Corporate-Testimonials\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Testimonials\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Corporate-Testimonials\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Corporate-Testimonials\\/slide3.jpg\"}],\"Corporate-Store\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Store\\/slide1.jpg\"}],\"Corporate-Support\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Support\\/slide1.jpg\"}],\"Corporate-Team\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Team\\/slide1.jpg\"}],\"Corporate-Selected-Projects-Title\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Selected-Projects-Title\\/slide1.jpg\"}],\"Corporate-Selected-Projects\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Selected-Projects\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Corporate-Selected-Projects\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Corporate-Selected-Projects\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"Corporate-Selected-Projects\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"Corporate-Selected-Projects\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"Corporate-Selected-Projects\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"Corporate-Selected-Projects\\/slide7.jpg\"}],\"Corporate-Clients\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Clients\\/slide1.jpg\"}],\"Corporate-Text-Block\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Text-Block\\/slide1.jpg\"}],\"Corporate-Mobile-App\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Mobile-App\\/slide1.jpg\"}],\"Corporate-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Contacts\\/slide1.jpg\"}],\"Corporate-Footer\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Footer\\/slide1.jpg\"}],\"Corporate-Scroll-To-Top\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Scroll-To-Top\\/slide1.jpg\"}],\"geometric-menu\":[{\"title\":\"Slide 1\",\"img\":\"geometric-menu\\/slide1.jpg\"}],\"geometric-hero\":[{\"title\":\"Slide 1\",\"img\":\"geometric-hero\\/slide1.jpg\"}],\"geometric-grid\":[{\"title\":\"Slide 1\",\"img\":\"geometric-grid\\/slide1.jpg\"}],\"geometric-about\":[{\"title\":\"Slide 1\",\"img\":\"geometric-about\\/slide1.jpg\"}],\"geometric-texts\":[{\"title\":\"Slide 1\",\"img\":\"geometric-texts\\/slide1.jpg\"}],\"geometric-services\":[{\"title\":\"Slide 1\",\"img\":\"geometric-services\\/slide1.jpg\"}],\"geometric-texts-2\":[{\"title\":\"Slide 1\",\"img\":\"geometric-texts-2\\/slide1.jpg\"}],\"geometric-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"geometric-testimonials\\/slide1.jpg\"}],\"geometric-footer\":[{\"title\":\"Slide 1\",\"img\":\"geometric-footer\\/slide1.jpg\"}],\"geometric-lightbox\":[{\"title\":\"Slide 1\",\"img\":\"geometric-lightbox\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"geometric-lightbox\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"geometric-lightbox\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"geometric-lightbox\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"geometric-lightbox\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"geometric-lightbox\\/slide6.jpg\"}],\"brutal-menu\":[{\"title\":\"Slide 1\",\"img\":\"brutal-menu\\/slide1.jpg\"}],\"brutal-hero\":[{\"title\":\"Slide 1\",\"img\":\"brutal-hero\\/slide1.jpg\"}],\"brutal-about\":[{\"title\":\"Slide 1\",\"img\":\"brutal-about\\/slide1.jpg\"}],\"brutal-highlight\":[{\"title\":\"Slide 1\",\"img\":\"brutal-highlight\\/slide1.jpg\"}],\"brutal-projects\":[{\"title\":\"Slide 1\",\"img\":\"brutal-projects\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"brutal-projects\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"brutal-projects\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"brutal-projects\\/slide4.jpg\"}],\"brutal-services\":[{\"title\":\"Slide 1\",\"img\":\"brutal-services\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"brutal-services\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"brutal-services\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"brutal-services\\/slide4.jpg\"}],\"brutal-callout\":[{\"title\":\"Slide 1\",\"img\":\"brutal-callout\\/slide1.jpg\"}],\"brutal-footer\":[{\"title\":\"Slide 1\",\"img\":\"brutal-footer\\/slide1.jpg\"}],\"Church-Header\":[{\"title\":\"Slide 1\",\"img\":\"Church-Header\\/slide1.jpg\"}],\"Church-Upcoming-Events\":[{\"title\":\"Slide 1\",\"img\":\"Church-Upcoming-Events\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Church-Upcoming-Events\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Church-Upcoming-Events\\/slide3.jpg\"}],\"Church-About\":[{\"title\":\"Slide 1\",\"img\":\"Church-About\\/slide1.jpg\"}],\"Church-Pastors\":[{\"title\":\"Slide 1\",\"img\":\"Church-Pastors\\/slide1.jpg\"}],\"Church-Photo-Gallery\":[{\"title\":\"Slide 1\",\"img\":\"Church-Photo-Gallery\\/slide1.jpg\"}],\"Church-Community\":[{\"title\":\"Slide 1\",\"img\":\"Church-Community\\/slide1.jpg\"}],\"Church-Sermon\":[{\"title\":\"Slide 1\",\"img\":\"Church-Sermon\\/slide1.jpg\"}],\"Church-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Church-Contacts\\/slide1.jpg\"}],\"Church-Footer\":[{\"title\":\"Slide 1\",\"img\":\"Church-Footer\\/slide1.jpg\"}],\"Church-Light-Header\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Header\\/slide1.jpg\"}],\"Church-Light-Upcoming-Events\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Upcoming-Events\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Church-Light-Upcoming-Events\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Church-Light-Upcoming-Events\\/slide3.jpg\"}],\"Church-Light-About\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-About\\/slide1.jpg\"}],\"Church-Light-Pastors\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Pastors\\/slide1.jpg\"}],\"Church-Light-Photo-Gallery\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Photo-Gallery\\/slide1.jpg\"}],\"Church-Light-Community\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Community\\/slide1.jpg\"}],\"Church-Light-Sermon\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Sermon\\/slide1.jpg\"}],\"Church-Light-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Contacts\\/slide1.jpg\"}],\"Church-Light-Footer\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Footer\\/slide1.jpg\"}],\"rockable-menu\":[{\"title\":\"Slide 1\",\"img\":\"rockable-menu\\/slide1.jpg\"}],\"rockable-hero\":[{\"title\":\"Slide 1\",\"img\":\"rockable-hero\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"rockable-hero\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"rockable-hero\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"rockable-hero\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"rockable-hero\\/slide5.jpg\"}],\"rockable-lineup\":[{\"title\":\"Slide 1\",\"img\":\"rockable-lineup\\/slide1.jpg\"}],\"rockable-lineup-2\":[{\"title\":\"Slide 1\",\"img\":\"rockable-lineup-2\\/slide1.jpg\"}],\"rockable-gallery-title\":[{\"title\":\"Slide 1\",\"img\":\"rockable-gallery-title\\/slide1.jpg\"}],\"rockable-gallery\":[{\"title\":\"Slide 1\",\"img\":\"rockable-gallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"rockable-gallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"rockable-gallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"rockable-gallery\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"rockable-gallery\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"rockable-gallery\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"rockable-gallery\\/slide7.jpg\"}],\"rockable-sponsors\":[{\"title\":\"Slide 1\",\"img\":\"rockable-sponsors\\/slide1.jpg\"}],\"rockable-footer\":[{\"title\":\"Slide 1\",\"img\":\"rockable-footer\\/slide1.jpg\"}],\"rockable-detail-modal\":[{\"title\":\"Slide 1\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 3\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 4\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 5\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 6\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 7\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 8\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 9\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 10\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 11\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 12\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 13\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 14\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 15\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 16\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 17\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 18\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"}],\"rockable-detail-modal-2\":[{\"title\":\"Slide 1\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 3\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 4\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 5\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 6\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 7\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 8\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 9\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 10\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 11\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 12\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 13\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 14\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 15\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 16\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 17\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 18\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"}],\"real-estate-showcase-slider\":[{\"title\":\"Slide 1\",\"img\":\"Real-Estate-Showcase-Slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Real-Estate-Showcase-Slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Real-Estate-Showcase-Slider\\/slide3.jpg\"}],\"isometric-slider\":[{\"title\":\"Slide 1\",\"img\":\"isometric-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"isometric-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"isometric-slider\\/slide3.jpg\"}],\"E-Commerce-Slider\":[{\"title\":\"Slide 1\",\"img\":\"Shoes-Store-Slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Shoes-Store-Slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Shoes-Store-Slider\\/slide3.jpg\"}],\"E-Commerce-Slider-Modal\":[{\"title\":\"Slide 1\",\"img\":\"Shoes-Store-Slider-Modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Shoes-Store-Slider-Modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Shoes-Store-Slider-Modal\\/slide3.jpg\"}],\"Woo-Commerce-Slider-Dynamic\":[{\"title\":\"Slide 1\",\"img\":\"Shoes-Store-Slider-Dynamic\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Shoes-Store-Slider-Dynamic\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Shoes-Store-Slider-Dynamic\\/slide3.jpg\"}],\"blooming-header\":[{\"title\":\"Slide 1\",\"img\":\"blooming-header\\/slide1.jpg\"}],\"blooming-about\":[{\"title\":\"Slide 1\",\"img\":\"blooming-about\\/slide1.jpg\"}],\"blooming-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"blooming-portfolio\\/slide1.jpg\"}],\"blooming-wedding-title\":[{\"title\":\"Slide 1\",\"img\":\"blooming-wedding-title\\/slide1.jpg\"}],\"blooming-wedding-carousel\":[{\"title\":\"Slide 1\",\"img\":\"blooming-wedding-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"blooming-wedding-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"blooming-wedding-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"blooming-wedding-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"blooming-wedding-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"blooming-wedding-carousel\\/slide6.jpg\"}],\"blooming-wedding-text\":[{\"title\":\"Slide 1\",\"img\":\"blooming-wedding-text\\/slide1.jpg\"}],\"blooming-parties-title\":[{\"title\":\"Slide 1\",\"img\":\"blooming-parties-title\\/slide1.jpg\"}],\"blooming-parties-carousel\":[{\"title\":\"Slide 1\",\"img\":\"blooming-parties-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"blooming-parties-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"blooming-parties-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"blooming-parties-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"blooming-parties-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"blooming-parties-carousel\\/slide6.jpg\"}],\"blooming-parties-text\":[{\"title\":\"Slide 1\",\"img\":\"blooming-parties-text\\/slide1.jpg\"}],\"blooming-funeral-title\":[{\"title\":\"Slide 1\",\"img\":\"blooming-funeral-title\\/slide1.jpg\"}],\"blooming-funeral-slider\":[{\"title\":\"Slide 1\",\"img\":\"blooming-funeral-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"blooming-funeral-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"blooming-funeral-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"blooming-funeral-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"blooming-funeral-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"blooming-funeral-slider\\/slide6.jpg\"}],\"blooming-funeral-text\":[{\"title\":\"Slide 1\",\"img\":\"blooming-funeral-text\\/slide1.jpg\"}],\"blooming-contact\":[{\"title\":\"Slide 1\",\"img\":\"blooming-contact\\/slide1.jpg\"}],\"particle-hero\":[{\"title\":\"Slide 1\",\"img\":\"particle-hero\\/slide1.jpg\"}],\"bubble-morph-hero\":[{\"title\":\"Slide 1\",\"img\":\"bubble-morph-hero\\/slide1.jpg\"}],\"parallax-hero\":[{\"title\":\"Slide 1\",\"img\":\"parallax-hero\\/slide1.jpg\"}],\"video-hero\":[{\"title\":\"Slide 1\",\"img\":\"video-hero\\/slide1.jpg\"}],\"ken-burns-hero\":[{\"title\":\"Slide 1\",\"img\":\"ken-burns-hero\\/slide1.jpg\"}],\"basic-hero-collection\":[{\"title\":\"Slide 1\",\"img\":\"basic-hero-collection\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"basic-hero-collection\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"basic-hero-collection\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"basic-hero-collection\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"basic-hero-collection\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"basic-hero-collection\\/slide6.jpg\"}],\"launching-very-soon\":[{\"title\":\"Slide 1\",\"img\":\"launching-very-soon\\/slide1.jpg\"}],\"Under-Construction\":[{\"title\":\"Slide 1\",\"img\":\"Under-Construction\\/slide1.jpg\"}],\"Particle-Effect\":[{\"title\":\"Slide 1\",\"img\":\"Particle-Effect\\/slide1.jpg\"}],\"Particle-Effect-2\":[{\"title\":\"Slide 1\",\"img\":\"Particle-Effect-2\\/slide1.jpg\"}],\"stark-menu\":[{\"title\":\"Slide 1\",\"img\":\"stark-menu\\/slide1.jpg\"}],\"stark-header\":[{\"title\":\"Slide 1\",\"img\":\"stark-header\\/slide1.jpg\"}],\"stark-content\":[{\"title\":\"Slide 1\",\"img\":\"stark-content\\/slide1.jpg\"}],\"stark-carousel\":[{\"title\":\"Slide 1\",\"img\":\"stark-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"stark-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"stark-carousel\\/slide3.jpg\"}],\"stark-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"stark-portfolio\\/slide1.jpg\"}],\"stark-portfolio-detail\":[{\"title\":\"Slide 1\",\"img\":\"stark-portfolio-detail\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"stark-portfolio-detail\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"stark-portfolio-detail\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"stark-portfolio-detail\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"stark-portfolio-detail\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"stark-portfolio-detail\\/slide6.jpg\"}],\"stark-contact\":[{\"title\":\"Slide 1\",\"img\":\"stark-contact\\/slide1.jpg\"}],\"stark-footer\":[{\"title\":\"Slide 1\",\"img\":\"stark-footer\\/slide1.jpg\"}],\"stark-newsletter\":[{\"title\":\"Slide 1\",\"img\":\"stark-newsletter\\/slide1.jpg\"}],\"big-summer-sale\":[{\"title\":\"Slide 1\",\"img\":\"big-summer-sale\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"big-summer-sale\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"big-summer-sale\\/slide3.jpg\"}],\"traveller-carousel\":[{\"title\":\"Slide 1\",\"img\":\"traveller-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"traveller-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"traveller-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"traveller-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"traveller-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"traveller-carousel\\/slide6.jpg\"}],\"project-carousel\":[{\"title\":\"Slide 1\",\"img\":\"project-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"project-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"project-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"project-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"project-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"project-carousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"project-carousel\\/slide7.jpg\"}],\"news-carousel\":[{\"title\":\"Slide 1\",\"img\":\"news-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"news-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"news-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"news-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"news-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"news-carousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"news-carousel\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"news-carousel\\/slide8.jpg\"}],\"story-menu\":[{\"title\":\"Slide 1\",\"img\":\"story-menu\\/slide1.jpg\"}],\"story-header\":[{\"title\":\"Slide 1\",\"img\":\"story-header\\/slide1.jpg\"}],\"story-block-1\":[{\"title\":\"Slide 1\",\"img\":\"story-block-1\\/slide1.jpg\"}],\"story-content-1\":[{\"title\":\"Slide 1\",\"img\":\"story-content-1\\/slide1.jpg\"}],\"story-block-2\":[{\"title\":\"Slide 1\",\"img\":\"story-block-2\\/slide1.jpg\"}],\"story-block-3\":[{\"title\":\"Slide 1\",\"img\":\"story-block-3\\/slide1.jpg\"}],\"story-content-2\":[{\"title\":\"Slide 1\",\"img\":\"story-content-2\\/slide1.jpg\"}],\"story-block-4\":[{\"title\":\"Slide 1\",\"img\":\"story-block-4\\/slide1.jpg\"}],\"story-content-3\":[{\"title\":\"Slide 1\",\"img\":\"story-content-3\\/slide1.jpg\"}],\"mini-website\":[{\"title\":\"Slide 1\",\"img\":\"mini-website\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"mini-website\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"mini-website\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"mini-website\\/slide4.jpg\"}],\"food-delivery\":[{\"title\":\"Slide 1\",\"img\":\"food-delivery\\/slide1.jpg\"}],\"slider-with-illustrations\":[{\"title\":\"Slide 1\",\"img\":\"slider-with-illustrations\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"slider-with-illustrations\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"slider-with-illustrations\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"slider-with-illustrations\\/slide4.jpg\"}],\"zen-menu\":[{\"title\":\"Slide 1\",\"img\":\"zen-menu\\/slide1.jpg\"}],\"zen-header\":[{\"title\":\"Slide 1\",\"img\":\"zen-header\\/slide1.jpg\"}],\"zen-about\":[{\"title\":\"Slide 1\",\"img\":\"zen-about\\/slide1.jpg\"}],\"zen-features\":[{\"title\":\"Slide 1\",\"img\":\"zen-features\\/slide1.jpg\"}],\"zen-video\":[{\"title\":\"Slide 1\",\"img\":\"zen-video\\/slide1.jpg\"}],\"zen-pricing\":[{\"title\":\"Slide 1\",\"img\":\"zen-pricing\\/slide1.jpg\"}],\"zen-testimonials-title\":[{\"title\":\"Slide 1\",\"img\":\"zen-testimonials-title\\/slide1.jpg\"}],\"zen-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"zen-testimonials\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"zen-testimonials\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"zen-testimonials\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"zen-testimonials\\/slide4.jpg\"}],\"zen-footer\":[{\"title\":\"Slide 1\",\"img\":\"zen-footer\\/slide1.jpg\"}],\"Paintbrush-Effect\":[{\"title\":\"Slide 1\",\"img\":\"Paintbrush-Effect\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Paintbrush-Effect\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Paintbrush-Effect\\/slide3.jpg\"}],\"black-friday-scroll-video\":[{\"title\":\"Slide 1\",\"img\":\"black-friday-scroll-video\\/slide1.jpg\"}],\"charity-menu\":[{\"title\":\"Slide 1\",\"img\":\"charity-menu\\/slide1.jpg\"}],\"charity-header\":[{\"title\":\"Slide 1\",\"img\":\"charity-header\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"charity-header\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"charity-header\\/slide3.jpg\"}],\"charity-mission\":[{\"title\":\"Slide 1\",\"img\":\"charity-mission\\/slide1.jpg\"}],\"charity-funds\":[{\"title\":\"Slide 1\",\"img\":\"charity-funds\\/slide1.jpg\"}],\"charity-success\":[{\"title\":\"Slide 1\",\"img\":\"charity-success\\/slide1.jpg\"}],\"charity-stories\":[{\"title\":\"Slide 1\",\"img\":\"charity-stories\\/slide1.jpg\"}],\"charity-worldmap\":[{\"title\":\"Slide 1\",\"img\":\"charity-worldmap\\/slide1.jpg\"}],\"charity-large-image\":[{\"title\":\"Slide 1\",\"img\":\"charity-large-image\\/slide1.jpg\"}],\"charity-sponsors\":[{\"title\":\"Slide 1\",\"img\":\"charity-sponsors\\/slide1.jpg\"}],\"charity-help\":[{\"title\":\"Slide 1\",\"img\":\"charity-help\\/slide1.jpg\"}],\"charity-footer\":[{\"title\":\"Slide 1\",\"img\":\"charity-footer\\/slide1.jpg\"}],\"cinematic-hero-titles\":[{\"title\":\"Slide 1\",\"img\":\"cinematic-hero-titles\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cinematic-hero-titles\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cinematic-hero-titles\\/slide3.jpg\"}],\"design-dna-scroll-video\":[{\"title\":\"Slide 1\",\"img\":\"design-dna-scroll-video\\/slide1.jpg\"}],\"food-delivery-lottie-scroll\":[{\"title\":\"Slide 1\",\"img\":\"food-delivery-lottie-scroll\\/slide1.jpg\"}],\"food-recipe-carousel\":[{\"title\":\"Slide 1\",\"img\":\"food-recipe-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"food-recipe-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"food-recipe-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"food-recipe-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"food-recipe-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"food-recipe-carousel\\/slide6.jpg\"}],\"food-recipe-modal\":[{\"title\":\"Slide 1\",\"img\":\"food-recipe-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"food-recipe-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"food-recipe-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"food-recipe-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"food-recipe-modal\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"food-recipe-modal\\/slide6.jpg\"}],\"corporate-carousel-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/corporate_carousel_bundle.jpg\"}],\"corporate-carousel\":[{\"title\":\"Slide 1\",\"img\":\"corporate-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"corporate-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"corporate-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"corporate-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"corporate-carousel\\/slide5.jpg\"}],\"corporate-lightbox\":[{\"title\":\"Slide 1\",\"img\":\"corporate-lightbox\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"corporate-lightbox\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"corporate-lightbox\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"corporate-lightbox\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"corporate-lightbox\\/slide5.jpg\"}],\"cyber-carousel-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/cybercarousel_bundle.jpg\"}],\"cyber-carousel\":[{\"title\":\"Slide 1\",\"img\":\"cyber-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cyber-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cyber-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cyber-carousel\\/slide4.jpg\"}],\"cyber-carousel-lightbox\":[{\"title\":\"Slide 1\",\"img\":\"cyber-carousel-lightbox\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cyber-carousel-lightbox\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cyber-carousel-lightbox\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cyber-carousel-lightbox\\/slide4.jpg\"}],\"woocommerce-carousel-one\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-carousel-one\\/slide1.jpg\"}],\"woocommerce-carousel-one-static\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-carousel-one-static\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"woocommerce-carousel-one-static\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"woocommerce-carousel-one-static\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"woocommerce-carousel-one-static\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"woocommerce-carousel-one-static\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"woocommerce-carousel-one-static\\/slide6.jpg\"}],\"woocommerce-carousel-two\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-carousel-two\\/slide1.jpg\"}],\"woocommerce-carousel-two-static\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-carousel-two-static\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"woocommerce-carousel-two-static\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"woocommerce-carousel-two-static\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"woocommerce-carousel-two-static\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"woocommerce-carousel-two-static\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"woocommerce-carousel-two-static\\/slide6.jpg\"}],\"woocommerce-feature-slider\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-feature-slider\\/slide1.jpg\"}],\"woocommerce-feature-slider-static\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-feature-slider-static\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"woocommerce-feature-slider-static\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"woocommerce-feature-slider-static\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"woocommerce-feature-slider-static\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"woocommerce-feature-slider-static\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"woocommerce-feature-slider-static\\/slide6.jpg\"}],\"woo-liquid-slider\":[{\"title\":\"Slide 1\",\"img\":\"woo-liquid-slider\\/slide1.jpg\"}],\"woocommerce-liquid-slider-static\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-liquid-slider-static\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"woocommerce-liquid-slider-static\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"woocommerce-liquid-slider-static\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"woocommerce-liquid-slider-static\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"woocommerce-liquid-slider-static\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"woocommerce-liquid-slider-static\\/slide6.jpg\"}],\"woo-slider-pack\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/woosliderpack_dynamic.jpg\"}],\"woo-slider-pack-static\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/woosliderpack_static.jpg\"}],\"creative-hero-collection\":[{\"title\":\"Slide 1\",\"img\":\"creative-hero-collection\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-hero-collection\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-hero-collection\\/slide3.jpg\"}],\"photographer-slider\":[{\"title\":\"Slide 1\",\"img\":\"photographer-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"photographer-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"photographer-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"photographer-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"photographer-slider\\/slide5.jpg\"}],\"realestate-slider\":[{\"title\":\"Slide 1\",\"img\":\"realestate-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"realestate-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"realestate-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"realestate-slider\\/slide4.jpg\"}],\"saas-product-slider\":[{\"title\":\"Slide 1\",\"img\":\"saas-product-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"saas-product-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"saas-product-slider\\/slide3.jpg\"}],\"cinematic-wildlife-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/cinematic-wildlife-package.jpg\"}],\"cinematic-wildlife-slider\":[{\"title\":\"Slide 1\",\"img\":\"cinematic-wildlife-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cinematic-wildlife-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cinematic-wildlife-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cinematic-wildlife-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"cinematic-wildlife-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"cinematic-wildlife-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"cinematic-wildlife-slider\\/slide7.jpg\"}],\"cinematic-wildlife-modal\":[{\"title\":\"Slide 1\",\"img\":\"cinematic-wildlife-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cinematic-wildlife-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cinematic-wildlife-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cinematic-wildlife-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"cinematic-wildlife-modal\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"cinematic-wildlife-modal\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"cinematic-wildlife-modal\\/slide7.jpg\"}],\"gaming-stats-presentation-slider\":[{\"title\":\"Slide 1\",\"img\":\"gaming-stats-presentation-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"gaming-stats-presentation-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"gaming-stats-presentation-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"gaming-stats-presentation-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"gaming-stats-presentation-slider\\/slide5.jpg\"}],\"coffee-flavours\":[{\"title\":\"Slide 1\",\"img\":\"coffee-flavors\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"coffee-flavors\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"coffee-flavors\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"coffee-flavors\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"coffee-flavors\\/slide5.jpg\"}],\"showreel-slider\":[{\"title\":\"Slide 1\",\"img\":\"showreel-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"showreel-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"showreel-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"showreel-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"showreel-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"showreel-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"showreel-slider\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"showreel-slider\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"showreel-slider\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"showreel-slider\\/slide10.jpg\"}],\"visual-art-forms\":[{\"title\":\"Slide 1\",\"img\":\"visual-art-forms\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"visual-art-forms\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"visual-art-forms\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"visual-art-forms\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"visual-art-forms\\/slide5.jpg\"}],\"bg-effect-hero\":[{\"title\":\"Slide 1\",\"img\":\"bg-effect-hero\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"bg-effect-hero\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"bg-effect-hero\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"bg-effect-hero\\/slide4.jpg\"}],\"cyberfunk\":[{\"title\":\"Slide 1\",\"img\":\"cyberfunk\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cyberfunk\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cyberfunk\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cyberfunk\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"cyberfunk\\/slide5.jpg\"}],\"motion-blur-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"motion-blur-portfolio\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"motion-blur-portfolio\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"motion-blur-portfolio\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"motion-blur-portfolio\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"motion-blur-portfolio\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"motion-blur-portfolio\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"motion-blur-portfolio\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"motion-blur-portfolio\\/slide8.jpg\"}],\"portal-effect-hero\":[{\"title\":\"Slide 1\",\"img\":\"portal-effect-hero\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"portal-effect-hero\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"portal-effect-hero\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"portal-effect-hero\\/slide4.jpg\"}],\"winery-timeline\":[{\"title\":\"Slide 1\",\"img\":\"winery-timeline\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"winery-timeline\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"winery-timeline\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"winery-timeline\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"winery-timeline\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"winery-timeline\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"winery-timeline\\/slide7.jpg\"}],\"smart-living-one-pager-v1\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/Smart-Living-One-Pager-V1.jpg\"}],\"smart-living-one-pager-v2\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/Smart-Living-One-Pager-V2.jpg\"}],\"smart-living-one-pager-v3\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/Smart-Living-One-Pager-V3.jpg\"}],\"menu-1\":[{\"title\":\"Slide 1\",\"img\":\"menu-1\\/slide1.jpg\"}],\"onepage-hero-1\":[{\"title\":\"Slide 1\",\"img\":\"onepage-hero-1\\/slide1.jpg\"}],\"about1\":[{\"title\":\"Slide 1\",\"img\":\"about1\\/slide1.jpg\"}],\"services1\":[{\"title\":\"Slide 1\",\"img\":\"services1\\/slide1.jpg\"}],\"projects1\":[{\"title\":\"Slide 1\",\"img\":\"projects1\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects1\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects1\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects1\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects1\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects1\\/slide6.jpg\"}],\"footer-1\":[{\"title\":\"Slide 1\",\"img\":\"footer-1\\/slide1.jpg\"}],\"explainer-block-1-part1\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-1-part1\\/slide1.jpg\"}],\"explainer-block-1-part2\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-1-part2\\/slide1.jpg\"}],\"projects-modal-1\":[{\"title\":\"Slide 1\",\"img\":\"projects-modal-1\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-modal-1\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-modal-1\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects-modal-1\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects-modal-1\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects-modal-1\\/slide6.jpg\"}],\"menu-2\":[{\"title\":\"Slide 1\",\"img\":\"menu-2\\/slide1.jpg\"}],\"hero-2\":[{\"title\":\"Slide 1\",\"img\":\"hero-2\\/slide1.jpg\"}],\"services-2\":[{\"title\":\"Slide 1\",\"img\":\"services-2\\/services2-thumbnail.jpg\"}],\"about-2\":[{\"title\":\"Slide 1\",\"img\":\"about-2\\/slide1.jpg\"}],\"projects-2\":[{\"title\":\"Slide 1\",\"img\":\"projects-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-2\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-2\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects-2\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects-2\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects-2\\/slide6.jpg\"}],\"footer2\":[{\"title\":\"Slide 1\",\"img\":\"footer2\\/slide1.jpg\"}],\"explainer-block-2-part1\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-2-part1\\/slide1.jpg\"}],\"explainer-block-2-part2\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-2-part2\\/slide1.jpg\"}],\"projects-modal-2\":[{\"title\":\"Slide 1\",\"img\":\"projects-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-modal-2\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-modal-2\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects-modal-2\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects-modal-2\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects-modal-2\\/slide6.jpg\"}],\"menu-3\":[{\"title\":\"Slide 1\",\"img\":\"menu-3\\/slide1.jpg\"}],\"hero-3\":[{\"title\":\"Slide 1\",\"img\":\"hero-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"hero-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"hero-3\\/slide3.jpg\"}],\"about-3\":[{\"title\":\"Slide 1\",\"img\":\"about-3\\/slide1.jpg\"}],\"services-3\":[{\"title\":\"Slide 1\",\"img\":\"services-3\\/slide1.jpg\"}],\"projects-3\":[{\"title\":\"Slide 1\",\"img\":\"projects-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-3\\/slide3.jpg\"}],\"footer-3\":[{\"title\":\"Slide 1\",\"img\":\"footer-3\\/slide1.jpg\"}],\"explainer-block-3-part1\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-3-part1\\/slide1.jpg\"}],\"explainer-block-3-part2\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-3-part2\\/slide1.jpg\"}],\"projects-modal-3\":[{\"title\":\"Slide 1\",\"img\":\"projects-modal-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-modal-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-modal-3\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects-modal-3\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects-modal-3\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects-modal-3\\/slide6.jpg\"}],\"urban-street-skate-slider\":[{\"title\":\"Slide 1\",\"img\":\"urban-street-skate-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"urban-street-skate-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"urban-street-skate-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"urban-street-skate-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"urban-street-skate-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"urban-street-skate-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"urban-street-skate-slider\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"urban-street-skate-slider\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"urban-street-skate-slider\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"urban-street-skate-slider\\/slide10.jpg\"},{\"title\":\"Slide 11\",\"img\":\"urban-street-skate-slider\\/slide11.jpg\"},{\"title\":\"Slide 12\",\"img\":\"urban-street-skate-slider\\/slide12.jpg\"}],\"yummy-burgers\":[{\"title\":\"Slide 1\",\"img\":\"yummy-burgers\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"yummy-burgers\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"yummy-burgers\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"yummy-burgers\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"yummy-burgers\\/slide5.jpg\"}],\"tattoo-event-website-template-package\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/tattoo_event_website_package.jpg\"}],\"tattoo-event-hero-slider\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-hero-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"tattoo-event-hero-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"tattoo-event-hero-slider\\/slide3.jpg\"}],\"tattoo-event-about\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-about\\/slide1.jpg\"}],\"tattoo-event-artists\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-artists\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"tattoo-event-artists\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"tattoo-event-artists\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"tattoo-event-artists\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"tattoo-event-artists\\/slide5.jpg\"}],\"tattoo-event-schedule\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-schedule\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"tattoo-event-schedule\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"tattoo-event-schedule\\/slide3.jpg\"}],\"tattoo-event-news\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-news\\/slide1.jpg\"}],\"tattoo-event-footer\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-footer\\/slide1.jpg\"}],\"startup-website-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/startup-website-template.jpg\"}],\"startup-menu\":[{\"title\":\"Slide 1\",\"img\":\"startup-menu\\/slide1.jpg\"}],\"startup-hero\":[{\"title\":\"Slide 1\",\"img\":\"startup-hero\\/slide1.jpg\"}],\"startup-about\":[{\"title\":\"Slide 1\",\"img\":\"startup-about\\/slide1.jpg\"}],\"startup-features-1\":[{\"title\":\"Slide 1\",\"img\":\"startup-features-1\\/slide1.jpg\"}],\"startup-features-2\":[{\"title\":\"Slide 1\",\"img\":\"startup-features-2\\/slide1.jpg\"}],\"startup-team\":[{\"title\":\"Slide 1\",\"img\":\"startup-team\\/slide1.jpg\"}],\"startup-reviews\":[{\"title\":\"Slide 1\",\"img\":\"startup-reviews\\/slide1.jpg\"}],\"startup-cta\":[{\"title\":\"Slide 1\",\"img\":\"startup-cta\\/slide1.jpg\"}],\"startup-footer\":[{\"title\":\"Slide 1\",\"img\":\"startup-footer\\/slide1.jpg\"}],\"startup-video-modal\":[{\"title\":\"Slide 1\",\"img\":\"startup-video-modal\\/slide1.jpg\"}],\"christmas-gift-card-landing-page\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/christmas-gift-card-landing-page.jpg\"}],\"christmas-landing-page-1\":[{\"title\":\"Slide 1\",\"img\":\"christmas-gift-card-landing-page\\/slide1.jpg\"}],\"christmas-landing-page-2\":[{\"title\":\"Slide 1\",\"img\":\"christmas-landing-page-2\\/slide1.jpg\"}],\"image-slider\":[{\"title\":\"Slide 1\",\"img\":\"image-slider\\/slide-1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"image-slider\\/slide-2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"image-slider\\/slide-3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"image-slider\\/slide-4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"image-slider\\/slide-5.jpg\"}],\"full-width-slider\":[{\"title\":\"Slide 1\",\"img\":\"full-width-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"full-width-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"full-width-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"full-width-slider\\/slide4.jpg\"}],\"app-website-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/app-website-template.jpg\"}],\"app-website-menu\":[{\"title\":\"Slide 1\",\"img\":\"app-website-menu\\/slide1.jpg\"}],\"app-website-hero\":[{\"title\":\"Slide 1\",\"img\":\"app-website-hero\\/slide1.jpg\"}],\"app-download-buttons\":[{\"title\":\"Slide 1\",\"img\":\"app-download-buttons\\/slide1.jpg\"}],\"app-website-about\":[{\"title\":\"Slide 1\",\"img\":\"app-website-about\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"app-website-about\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"app-website-about\\/slide3.jpg\"}],\"app-website-features\":[{\"title\":\"Slide 1\",\"img\":\"app-website-features\\/slide1.jpg\"}],\"app-website-video-cta\":[{\"title\":\"Slide 1\",\"img\":\"app-website-video-cta\\/slide1.jpg\"}],\"app-website-screenshots\":[{\"title\":\"Slide 1\",\"img\":\"app-website-screenshots\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"app-website-screenshots\\/slide2.jpg\"}],\"app-testimonials-title\":[{\"title\":\"Slide 1\",\"img\":\"app-testimonials-title\\/slide1.jpg\"}],\"app-website-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"app-website-testimonials\\/slide1.jpg\"}],\"app-website-team\":[{\"title\":\"Slide 1\",\"img\":\"app-website-team\\/slide1.jpg\"}],\"app-website-footer\":[{\"title\":\"Slide 1\",\"img\":\"app-website-footer\\/slide1.jpg\"}],\"app-video-modal\":[{\"title\":\"Slide 1\",\"img\":\"app-video-modal\\/slide1.jpg\"}],\"testimonial-carousel-pack\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/testimonial-carousel-pack.jpg\"}],\"testimonial-carousel-1\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-1\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"testimonial-carousel-1\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"testimonial-carousel-1\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"testimonial-carousel-1\\/slide4.jpg\"}],\"testimonial-carousel-2\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"testimonial-carousel-2\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"testimonial-carousel-2\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"testimonial-carousel-2\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"testimonial-carousel-2\\/slide5.jpg\"}],\"testimonial-carousel-3\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"testimonial-carousel-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"testimonial-carousel-3\\/slide3.jpg\"}],\"testimonial-carousel-4\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-4\\/slide1.jpg\"}],\"testimonial-carousel-5\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-5\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"testimonial-carousel-5\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"testimonial-carousel-5\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"testimonial-carousel-5\\/slide4.jpg\"}],\"deep-dive\":[{\"title\":\"Slide 1\",\"img\":\"deep-dive\\/slide1.jpg\"}],\"particle-wave-showcase\":[{\"title\":\"Slide 1\",\"img\":\"particle-wave-showcase\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"particle-wave-showcase\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"particle-wave-showcase\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"particle-wave-showcase\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"particle-wave-showcase\\/slide5.jpg\"}],\"video-hero-header\":[{\"title\":\"Slide 1\",\"img\":\"video-hero-header\\/slide1.jpg\"}],\"solar-system-showcase-slider\":[{\"title\":\"Slide 1\",\"img\":\"solar-system-showcase-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"solar-system-showcase-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"solar-system-showcase-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"solar-system-showcase-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"solar-system-showcase-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"solar-system-showcase-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"solar-system-showcase-slider\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"solar-system-showcase-slider\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"solar-system-showcase-slider\\/slide9.jpg\"}],\"Optic-shop-showcase-slider\":[{\"title\":\"Slide 1\",\"img\":\"Optic-shop-showcase-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Optic-shop-showcase-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Optic-shop-showcase-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"Optic-shop-showcase-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"Optic-shop-showcase-slider\\/slide5.jpg\"}],\"charts-template-showcase\":[{\"title\":\"Slide 1\",\"img\":\"charts-template-showcase\\/slide1.jpg\"}],\"fashion-website-slider-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/fashion-website-slider.jpg\"}],\"fashion-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"fashion-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fashion-website-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fashion-website-slider\\/slide5.jpg\"}],\"fashion-website-slider-modal\":[{\"title\":\"Slide 1\",\"img\":\"fashion-website-slider-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion-website-slider-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion-website-slider-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fashion-website-slider-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fashion-website-slider-modal\\/slide5.jpg\"}],\"furniture-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"furniture-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"furniture-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"furniture-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"furniture-website-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"furniture-website-slider\\/slide5.jpg\"}],\"fitness-gym-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"fitness-gym-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fitness-gym-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fitness-gym-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fitness-gym-website-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fitness-gym-website-slider\\/slide5.jpg\"}],\"ai--robotics-webside-slider-package\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/ai-and-robotics-website-slider-package.jpg\"}],\"ai-and-robotics-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"ai-and-robotics-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"ai-and-robotics-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"ai-and-robotics-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"ai-and-robotics-website-slider\\/slide4.jpg\"}],\"ai-video-modal\":[{\"title\":\"Slide 1\",\"img\":\"ai-video-modal\\/slide1.jpg\"}],\"minimal-typography-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"minimal-typography-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"minimal-typography-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"minimal-typography-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"minimal-typography-website-slider\\/slide4.jpg\"}],\"404-page-collection\":[{\"title\":\"Slide 1\",\"img\":\"404-page-collection\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"404-page-collection\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"404-page-collection\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"404-page-collection\\/slide4.jpg\"}]}}','no'),(196,'rs-templates-counter','605','no'),(197,'revslider_table_version','1.0.12','yes'),(200,'bodhi_svgs_plugin_version','2.4.2','yes'),(201,'WCSSC_options','a:9:{s:7:\"show_id\";b:0;s:4:\"type\";i:1;s:15:\"defined_classes\";a:0:{}s:11:\"show_number\";b:1;s:13:\"show_location\";b:1;s:12:\"show_evenodd\";b:1;s:17:\"fix_widget_params\";b:0;s:13:\"filter_unique\";b:0;s:17:\"translate_classes\";b:0;}','yes'),(202,'WCSSC_db_version','1.5.4','yes'),(203,'action_scheduler_hybrid_store_demarkation','9','yes'),(204,'schema-ActionScheduler_StoreSchema','6.0.1652761274','yes'),(205,'schema-ActionScheduler_LoggerSchema','3.0.1652761274','yes'),(208,'woocommerce_schema_version','430','yes'),(209,'woocommerce_store_address','','yes'),(210,'woocommerce_store_address_2','','yes'),(211,'woocommerce_store_city','','yes'),(212,'woocommerce_default_country','US:CA','yes'),(213,'woocommerce_store_postcode','','yes'),(214,'woocommerce_allowed_countries','all','yes'),(215,'woocommerce_all_except_countries','','yes'),(216,'woocommerce_specific_allowed_countries','','yes'),(217,'woocommerce_ship_to_countries','','yes'),(218,'woocommerce_specific_ship_to_countries','','yes'),(219,'woocommerce_default_customer_address','base','yes'),(220,'woocommerce_calc_taxes','no','yes'),(221,'woocommerce_enable_coupons','yes','yes'),(222,'woocommerce_calc_discounts_sequentially','no','no'),(223,'woocommerce_currency','USD','yes'),(224,'woocommerce_currency_pos','left','yes'),(225,'woocommerce_price_thousand_sep',',','yes'),(226,'woocommerce_price_decimal_sep','.','yes'),(227,'woocommerce_price_num_decimals','2','yes'),(228,'woocommerce_shop_page_id','10','yes'),(229,'woocommerce_cart_redirect_after_add','no','yes'),(230,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(231,'woocommerce_placeholder_image','9','yes'),(232,'woocommerce_weight_unit','kg','yes'),(233,'woocommerce_dimension_unit','cm','yes'),(234,'woocommerce_enable_reviews','yes','yes'),(235,'woocommerce_review_rating_verification_label','yes','no'),(236,'woocommerce_review_rating_verification_required','no','no'),(237,'woocommerce_enable_review_rating','yes','yes'),(238,'woocommerce_review_rating_required','yes','no'),(239,'woocommerce_manage_stock','yes','yes'),(240,'woocommerce_hold_stock_minutes','60','no'),(241,'woocommerce_notify_low_stock','yes','no'),(242,'woocommerce_notify_no_stock','yes','no'),(243,'woocommerce_stock_email_recipient','brains@amaeka.com','no'),(244,'woocommerce_notify_low_stock_amount','2','no'),(245,'woocommerce_notify_no_stock_amount','0','yes'),(246,'woocommerce_hide_out_of_stock_items','no','yes'),(247,'woocommerce_stock_format','','yes'),(248,'woocommerce_file_download_method','force','no'),(249,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(250,'woocommerce_downloads_require_login','no','no'),(251,'woocommerce_downloads_grant_access_after_payment','yes','no'),(252,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(253,'woocommerce_attribute_lookup_enabled','yes','yes'),(254,'woocommerce_attribute_lookup_direct_updates','no','yes'),(255,'woocommerce_prices_include_tax','no','yes'),(256,'woocommerce_tax_based_on','shipping','yes'),(257,'woocommerce_shipping_tax_class','inherit','yes'),(258,'woocommerce_tax_round_at_subtotal','no','yes'),(259,'woocommerce_tax_classes','','yes'),(260,'woocommerce_tax_display_shop','excl','yes'),(261,'woocommerce_tax_display_cart','excl','yes'),(262,'woocommerce_price_display_suffix','','yes'),(263,'woocommerce_tax_total_display','itemized','no'),(264,'woocommerce_enable_shipping_calc','yes','no'),(265,'woocommerce_shipping_cost_requires_address','no','yes'),(266,'woocommerce_ship_to_destination','billing','no'),(267,'woocommerce_shipping_debug_mode','no','yes'),(268,'woocommerce_enable_guest_checkout','yes','no'),(269,'woocommerce_enable_checkout_login_reminder','no','no'),(270,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(271,'woocommerce_enable_myaccount_registration','no','no'),(272,'woocommerce_registration_generate_username','yes','no'),(273,'woocommerce_registration_generate_password','yes','no'),(274,'woocommerce_erasure_request_removes_order_data','no','no'),(275,'woocommerce_erasure_request_removes_download_data','no','no'),(276,'woocommerce_allow_bulk_remove_personal_data','no','no'),(277,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(278,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(279,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(280,'woocommerce_trash_pending_orders','','no'),(281,'woocommerce_trash_failed_orders','','no'),(282,'woocommerce_trash_cancelled_orders','','no'),(283,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(284,'woocommerce_email_from_name','Dental','no'),(285,'woocommerce_email_from_address','brains@amaeka.com','no'),(286,'woocommerce_email_header_image','','no'),(287,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(288,'woocommerce_email_base_color','#7f54b3','no'),(289,'woocommerce_email_background_color','#f7f7f7','no'),(290,'woocommerce_email_body_background_color','#ffffff','no'),(291,'woocommerce_email_text_color','#3c3c3c','no'),(292,'woocommerce_merchant_email_notifications','no','no'),(293,'woocommerce_cart_page_id','11','no'),(294,'woocommerce_checkout_page_id','12','no'),(295,'woocommerce_myaccount_page_id','13','no'),(296,'woocommerce_terms_page_id','3','yes'),(297,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(298,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(299,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(300,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(301,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(302,'woocommerce_myaccount_orders_endpoint','orders','yes'),(303,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(304,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(305,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(306,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(307,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(308,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(309,'woocommerce_logout_endpoint','customer-logout','yes'),(310,'woocommerce_api_enabled','no','yes'),(311,'woocommerce_allow_tracking','no','no'),(312,'woocommerce_show_marketplace_suggestions','yes','no'),(313,'woocommerce_single_image_width','600','yes'),(314,'woocommerce_thumbnail_image_width','300','yes'),(315,'woocommerce_checkout_highlight_required_fields','yes','yes'),(316,'woocommerce_demo_store','no','no'),(317,'wc_downloads_approved_directories_mode','enabled','yes'),(318,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(319,'current_theme_supports_woocommerce','yes','yes'),(320,'woocommerce_queue_flush_rewrite_rules','no','yes'),(323,'default_product_cat','15','yes'),(325,'woocommerce_refund_returns_page_id','14','yes'),(328,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:17:\"brains@amaeka.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:17:\"brains@amaeka.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(329,'woocommerce_version','6.5.1','yes'),(330,'woocommerce_db_version','6.5.1','yes'),(331,'woocommerce_admin_install_timestamp','1652761276','yes'),(332,'woocommerce_inbox_variant_assignment','10','yes'),(336,'recently_activated','a:0:{}','yes'),(337,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(338,'action_scheduler_lock_async-request-runner','1652954466','yes'),(339,'woocommerce_admin_notices','a:0:{}','yes'),(340,'revslider_update_version','6.4.10','yes'),(341,'elementor_version','3.6.5','yes'),(342,'elementor_install_history','a:1:{s:5:\"3.6.5\";i:1652761280;}','yes'),(343,'elementor_events_db_version','1.0.0','no'),(344,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"v1vb8ZdyIniyTR8Ibl3Sta0mt6RTgZvU\";}','yes'),(345,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(346,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(347,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(348,'widget_woocommerce_layered_nav_filters','a:2:{i:1;a:2:{s:5:\"title\";s:14:\"Active filters\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(349,'widget_woocommerce_layered_nav','a:3:{i:1;a:5:{s:5:\"title\";s:15:\"Filter by color\";s:9:\"attribute\";s:5:\"color\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:3:\"and\";s:7:\"classes\";s:0:\"\";}i:2;a:5:{s:5:\"title\";s:14:\"Filter by size\";s:9:\"attribute\";s:4:\"size\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:3:\"and\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(350,'widget_woocommerce_price_filter','a:2:{i:1;a:2:{s:5:\"title\";s:15:\"Filter by price\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(351,'widget_woocommerce_product_categories','a:2:{i:1;a:9:{s:5:\"title\";s:18:\"Product categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;s:9:\"max_depth\";s:0:\"\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(352,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(353,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(354,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(355,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(356,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(357,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(358,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(359,'widget_mc4wp_form_widget','a:2:{i:1;a:2:{s:5:\"title\";s:29:\"Subscribe to our mailing list\";s:7:\"classes\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(360,'widget_bcn_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(364,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1653559204','no'),(365,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:35:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:116:\"https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:16:48\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:270:\"Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:01\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:175:\"Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:20:31\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"We’d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:134:\"We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:38:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:36:\"setup_task_initiative_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"setup_task_initiative_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"We want to know what matters most to you\";s:7:\"content\";s:144:\"Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"setup_task_initiative_survey_q2_2022_share_your_input\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Share your input\";}}s:3:\"url\";s:26:\"https://t.maze.co/87390007\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-04-26 00:00:37\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:180;}}}s:14:\"affirm_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:14:\"affirm_q2_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"Boost your business with flexible payments\";s:7:\"content\";s:286:\"Expand your customer base with smarter payment options for more shoppers. With Affirm,  you can offer the most relevant payment options at every price point – from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"affirm_q2_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Get started for free\";}}s:3:\"url\";s:129:\"https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-15 00:00:33\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-05-28 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}}}}}s:32:\"setup_task_second_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"setup_task_second_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"We want to know what matters most to you\";s:7:\"content\";s:144:\"Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"setup_task_second_survey_q2_2022_share_your_input\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Share your input\";}}s:3:\"url\";s:26:\"https://t.maze.co/87390007\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-10 01:44:35\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:365;}}}}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:31:\"wc-admin-EU-consumer-protection\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-admin-EU-consumer-protection\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Important changes to EU consumer protection laws\";s:7:\"content\";s:317:\"New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc-admin-EU-consumer-protection\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Learn more about these changes\";}}s:3:\"url\";s:98:\"https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-14 11:42:55\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-07-01 23:59:00\";}}}s:37:\"googlelistings_multicountrygtm_q22022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"googlelistings_multicountrygtm_q22022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Expand your audience with Multi-Country Advertising\";s:7:\"content\";s:263:\"It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings &amp; Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:37:\"googlelistings_multicountrygtm_q22022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:34:\"Get Google Listings & Ads – free\";}}s:3:\"url\";s:149:\"https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-15 15:55:35\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-05-21 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}}}','no'),(366,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','no'),(368,'acf_version','5.12.2','yes'),(369,'rs_cache_overlay','6.5.21','yes'),(370,'mc4wp_version','4.8.7','yes'),(372,'wc_blocks_surface_cart_checkout_probability','42','yes'),(373,'wc_blocks_db_schema_version','260','yes'),(378,'elementor_onboarded','1','yes'),(382,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1653366097','no'),(383,'_transient_woocommerce_admin_remote_free_extensions_specs','a:4:{s:10:\"obw/basics\";O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"obw/basics\";s:5:\"title\";s:14:\"Get the basics\";s:7:\"plugins\";a:4:{i:0;O:8:\"stdClass\":4:{s:11:\"description\";s:163:\"Accept credit cards and other popular payment methods with <a href=\"https://woocommerce.com/products/woocommerce-payments\" target=\"_blank\">WooCommerce Payments</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:3:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}i:2;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_search\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";s:0:\"\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":4:{s:11:\"description\";s:119:\"Print shipping labels with <a href=\"https://woocommerce.com/products/shipping\" target=\"_blank\">WooCommerce Shipping</a>\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:13:\"product_types\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:5:\"count\";}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";i:1;s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}i:1;a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"product_types.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:9:\"downloads\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:2:\"!=\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";}i:2;O:8:\"stdClass\":4:{s:11:\"description\";s:111:\"Get automated sales tax with <a href=\"https://woocommerce.com/products/tax\" target=\"_blank\">WooCommerce Tax</a>\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";}i:3;O:8:\"stdClass\":4:{s:11:\"description\";s:110:\"Enhance speed and security with <a href=\"https://woocommerce.com/products/jetpack\" target=\"_blank\">Jetpack</a>\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:7:\"jetpack\";}}}}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"jetpack\";}}}s:8:\"obw/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"obw/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with <a href=\"https://woocommerce.com/products/mailpoet\" target=\"_blank\">MailPoet</a>\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:8:\"mailpoet\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":7:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:127:\"Drive sales with <a href=\"https://woocommerce.com/products/google-listings-and-ads\" target=\"_blank\">Google Listings and Ads</a>\";s:9:\"image_url\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google-listings-and-ads.png\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:23:\"google-listings-and-ads\";}}}s:15:\"task-list/reach\";O:8:\"stdClass\":3:{s:3:\"key\";s:15:\"task-list/reach\";s:5:\"title\";s:22:\"Reach out to customers\";s:7:\"plugins\";a:3:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:111:\"Create and send purchase follow-up emails, newsletters, and promotional campaigns straight from your dashboard.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailpoet.png\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:12:\"mailpoet:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"Mailchimp\";s:11:\"description\";s:78:\"Send targeted campaigns, recover abandoned carts and much more with Mailchimp.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp-for-woocommerce.png\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:25:\"mailchimp-for-woocommerce\";}i:2;O:8:\"stdClass\":6:{s:4:\"name\";s:29:\"Creative Mail for WooCommerce\";s:11:\"description\";s:99:\"Create on-brand store campaigns, fast email promotions and customer retargeting with Creative Mail.\";s:9:\"image_url\";s:121:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/creative-mail-by-constant-contact.png\";s:10:\"manage_url\";s:27:\"admin.php?page=creativemail\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:33:\"creative-mail-by-constant-contact\";}}}s:14:\"task-list/grow\";O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"task-list/grow\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"Google Listings & Ads\";s:11:\"description\";s:134:\"Reach more shoppers and drive sales for your store. Integrate with Google to list your products for free and launch paid ad campaigns.\";s:9:\"image_url\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google-listings-and-ads.png\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:27:\"google-listings-and-ads:alt\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:159:\"Get your products in front of Pinterest users searching for ideas and things to buy. Get started with Pinterest and make your entire product catalog browsable.\";s:9:\"image_url\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/pinterest.png\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}}}}','no'),(384,'_elementor_installed_time','1652761297','yes');
INSERT INTO `wp_options` VALUES (385,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:14:{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\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:796:{i:0;a:16:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:16:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:16:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:16:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:16:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:16:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:16:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:16:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:16:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:16:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:16:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:16:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:16:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:16:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:16:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:16:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:16:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:16:{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:114:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{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:111:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:16:{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:115:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:16:{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:114:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{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:110:\"https://library.elementor.com/skincare-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:16:{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:111:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:16:{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:114:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{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:109:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:16:{s:4:\"tmpl\";i: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:100:\"https://library.elementor.com/lp/dot-nft/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:16:{s:4:\"tmpl\";i: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:113:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:16:{s:4:\"tmpl\";i: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:115:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=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:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/interior-design-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:55:\"Fly-In | Team Details Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:154;a:16:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:52:\"Full Screen | Menu Popup | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:155;a:16:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:51:\"Classic | Discount Popup | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:50:\"Hello Bar | CTA Popup | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:45:\"Classic | Discount Popup | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:16:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:51:\"Bottom Bar | Discount Popup | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:38:\"Hello Bar | Menu Popup | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:43:\"Full Screen | Booking Popup | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:16:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:40:\"Classic | Discount Popup | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:40:\"Slide-In | Contact Popup | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:16:{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:123:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:16:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:35:\"Classic | Cta Popup | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:46:\"Bottom Bar | Contact Popup | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:38:\"Fly-In | Contact Popup | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:168;a:16:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:37:\"Classic |  Login Popup | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:169;a:16:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:42:\"Full Screen | Login Popup | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:34:\"Classic | Login Popup | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:16:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:37:\"Classic | Login Popup | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:46:\"Classic |  Login Popup | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:16:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:42:\"Fly-In | Contact Popup | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:16:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:42:\"Fly-In | Cta Popup | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:43:\"Full Screen | Contact Popup | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:45:\"Classic | Contact | Support  Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:16:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:16:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:16:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:16:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:16:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:187;a:16:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:16:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:16:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/nails-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:190;a:16:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/music-festival-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:191;a:16:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:16:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photographer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:198;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:200;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:201;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:204;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:205;a:16:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:206;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:208;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photographer-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:209;a:16:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:210;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:212;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/architecture-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:213;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:215;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:216;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"online shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:218;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:221;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"interior design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:224;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:226;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/construction-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:228;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:229;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:230;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/contact-plants-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"online shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:232;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:234;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:235;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dental-care-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:238;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:240;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:242;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:244;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:245;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:246;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/hotel-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/insurance-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:251;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:253;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:256;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/online-training-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:259;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:262;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:16:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:266;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/travel-agency-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:16:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:273;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:285;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:324;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:346;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:355;a:16:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:365;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:16:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:375;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:16:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:379;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:391;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:397;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:408;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:426;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:427;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:429;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:439;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:441;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:445;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:447;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:465;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:467;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:473;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:475;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:488;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:490;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:497;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:533;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:543;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:545;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:587;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:589;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:592;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:594;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:596;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:597;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:649;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:655;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:656;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:657;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:658;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:662;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:663;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:664;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:688;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:693;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:694;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:695;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:696;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:697;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:698;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:699;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:700;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:701;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:702;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:703;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:704;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:705;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:706;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:707;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:708;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:709;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:740;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:746;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:748;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:749;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:750;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:754;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:756;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:770;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:777;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:779;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:785;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:787;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:788;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:789;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:790;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(386,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:46:\"NFT 101: A Beginner’s Guide for Web Creators\";s:7:\"excerpt\";s:298:\"NFTs have taken the world by storm, providing web designers with fresh opportunities to earn money and distribute their work to larger audiences around the globe. In this article, we\'ll break down what NFTs are and how to use them practically (plus, a sneak peek at our new NFT landing page kits!).\";s:7:\"created\";i:1651578283;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:114:\"https://elementor.com/blog/nft-web-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:29:\"What Is Inclusive Web Design?\";s:7:\"excerpt\";s:297:\"When designing a website, it is important to keep in mind that not all users interact with it in the same way. Using inclusive design will help you remove bias and assumptions from your website and ensure that users will not feel excluded. Keep reading to learn how to master this modern approach.\";s:7:\"created\";i:1651142542;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:120:\"https://elementor.com/blog/inclusive-web-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:55:\"How To Grow Your Business Using Elementor Cloud Website\";s:7:\"excerpt\";s:313:\"In our ‘Community Talks’ event, four leading web creators held a panel discussion with practical tips on how you can incorporate Elementor Cloud Website into your business model to earn more. Uncover low-hanging fruit opportunities and learn to hunt down new avenues for business with Elementor Cloud Website.\";s:7:\"created\";i:1651067671;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:155:\"https://elementor.com/blog/how-to-grow-your-business-using-elementor-cloud-website/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:59:\"Word-of-Mouth Marketing: How To Build a Successful Strategy\";s:7:\"excerpt\";s:337:\"One of the most effective marketing strategies is word-of-mouth. Think about it: would you rather listen to a random guy on an infomercial or a direct recommendation from your business mentor? In this article, we’ll dive into what word-of-mouth marketing actually means and how you can successfully leverage it for your business today.\";s:7:\"created\";i:1650978196;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/word-of-mouth-marketing/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:88:\"More From Elementor 3.6 — Enhanced Import/Export and Rearrange Global Fonts and Colors\";s:7:\"excerpt\";s:251:\"In addition to the Flexbox Containers experiment, Elementor 3.6 also includes additions to the Import/Export tool and the ability to customize the order of your Global Fonts and Colors. These updates allow you to improve and accelerate your workflow. \";s:7:\"created\";i:1650456753;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:164:\"https://elementor.com/blog/introducing-enhanced-import-export-rearrange-global-fonts-colors/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(389,'mc4wp_flash_messages','a:0:{}','no'),(394,'action_scheduler_migration_status','complete','yes'),(403,'_transient_timeout_woocommerce_admin_payment_method_promotion_specs','1653378476','no'),(404,'_transient_woocommerce_admin_payment_method_promotion_specs','a:1:{s:20:\"woocommerce_payments\";O:8:\"stdClass\":8:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:7:\"content\";s:369:\"Payments made simple, with no monthly fees – designed exclusively for WooCommerce stores. Accept credit cards, debit cards, and other popular payment methods.<br/><br/>By clicking “Install”, you agree to the <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a> and <a href=\"https://automattic.com/privacy/\" target=\"_blank\">Privacy policy</a>.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:2:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:8:\"industry\";}}i:1;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"array_column\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:3:\"key\";s:4:\"slug\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:19:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}}}}s:9:\"sub_title\";s:865:\"<img class=\"wcpay-visa-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/visa.svg\" alt=\"Visa\"><img class=\"wcpay-mastercard-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/mastercard.svg\" alt=\"Mastercard\"><img class=\"wcpay-amex-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/amex.svg\" alt=\"Amex\"><img class=\"wcpay-googlepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/googlepay.svg\" alt=\"Googlepay\"><img class=\"wcpay-applepay-icon wcpay-icon\" src=\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/icons/applepay.svg\" alt=\"Applepay\">\";s:15:\"additional_info\";O:8:\"stdClass\":1:{s:18:\"experiment_version\";s:2:\"v2\";}}}','no'),(427,'_transient_wc_attribute_taxonomies','a:2:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:5:\"color\";s:15:\"attribute_label\";s:5:\"color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:4:\"size\";s:15:\"attribute_label\";s:4:\"size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}','yes'),(466,'_transient_product_query-transient-version','1652794770','yes'),(467,'wp_calendar_block_has_published_posts','1','yes'),(468,'category_children','a:0:{}','yes'),(469,'elementor_library_category_children','a:0:{}','yes'),(470,'product_cat_children','a:1:{i:43;a:2:{i:0;i:48;i:1;i:50;}}','yes'),(473,'_transient_product-transient-version','1652778915','yes'),(477,'woocommerce_demo_store_notice','This is a demo store for testing purposes &mdash; no orders shall be fulfilled.','yes'),(478,'woocommerce_shop_page_display','','yes'),(479,'woocommerce_category_archive_display','','yes'),(480,'woocommerce_default_catalog_orderby','menu_order','yes'),(481,'woocommerce_catalog_columns','4','yes'),(482,'woocommerce_thumbnail_cropping','1:1','yes'),(483,'woocommerce_thumbnail_cropping_custom_width','4','yes'),(484,'woocommerce_thumbnail_cropping_custom_height','3','yes'),(485,'woocommerce_checkout_company_field','optional','yes'),(486,'woocommerce_checkout_address_2_field','optional','yes'),(487,'woocommerce_checkout_phone_field','required','yes'),(488,'woocommerce_checkout_terms_and_conditions_checkbox_text','I have read and agree to the website [terms]','yes'),(489,'nav_menus_created_posts','a:0:{}','yes'),(490,'_transient_timeout_wc_product_children_79','1655370916','no'),(491,'_transient_wc_product_children_79','a:2:{s:3:\"all\";a:2:{i:0;i:98;i:1;i:99;}s:7:\"visible\";a:2:{i:0;i:98;i:1;i:99;}}','no'),(492,'_transient_timeout_wc_product_children_126','1655370916','no'),(493,'_transient_wc_product_children_126','a:2:{s:3:\"all\";a:6:{i:0;i:127;i:1;i:128;i:2;i:129;i:3;i:130;i:4;i:131;i:5;i:132;}s:7:\"visible\";a:6:{i:0;i:127;i:1;i:128;i:2;i:129;i:3;i:130;i:4;i:131;i:5;i:132;}}','no'),(494,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:11;s:3:\"all\";i:11;s:8:\"approved\";s:2:\"11\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(497,'_elementor_global_css','a:6:{s:4:\"time\";i:1652778930;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(500,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:22:{s:17:\"slider_revolution\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:7:\"divider\";a:2:{s:7:\"content\";s:3742:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:7:\"heading\";a:2:{s:7:\"content\";s:672:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:126:\"<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:5:\"3.6.5\";}s:25:\"namedical_unique_valuable\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:20:\"namedical_basic_team\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:9:\"image-box\";a:2:{s:7:\"content\";s:1770:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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>\";s:7:\"version\";s:5:\"3.6.5\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:718:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:28:\"namedical_basic_testimonials\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:20:\"namedical_basic_blog\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:19:\"wp-widget-tag_cloud\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:5:\"image\";a:2:{s:7:\"content\";s:268:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:125:\"<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">\";s:7:\"version\";s:5:\"3.6.5\";}s:23:\"namedical_basic_contact\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:9:\"shortcode\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:7:\"counter\";a:2:{s:7:\"content\";s:627:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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>\";s:7:\"version\";s:5:\"3.6.5\";}s:23:\"namedical_basic_process\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:24:\"namedical_ea_appointment\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:24:\"namedical_basic_services\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}s:14:\"image-carousel\";a:2:{s:7:\"content\";s:426:\"<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>\";s:7:\"version\";s:5:\"3.6.5\";}s:26:\"namedical_basic_typewriter\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.6.5\";}}}}','yes'),(501,'secret_key','4WBemA_fsRtQ2k1l@X(Yzpj.K]7 @eY;~XV|G<&]?XjYO:`q~;{;.K`HC]J% <Dv','no'),(532,'widget_recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(533,'widget_recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(543,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(793,'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'),(794,'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'),(795,'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'),(797,'revslider_update_revision_current','6.4.10','yes'),(868,'_transient_shipping-transient-version','1652785025','yes'),(869,'_transient_timeout_wc_shipping_method_count_legacy','1655377025','no'),(870,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1652785025\";s:5:\"value\";i:0;}','no'),(988,'_site_transient_timeout_browser_3221fdea7fc0a3d9988dbe5ff55cbf71','1653391821','no'),(989,'_site_transient_browser_3221fdea7fc0a3d9988dbe5ff55cbf71','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"101.0.4951.54\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(1267,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1524,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":4,\"critical\":0}','yes'),(1633,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1652954402;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:13:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:6:\"5.12.2\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.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:\"4.2.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/breadcrumb-navxt\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"7.0.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.7.0.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=2410525\";s:2:\"1x\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";s:3:\"svg\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103\";s:2:\"1x\";s:71:\"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}s:26:\"easy-appointments/main.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/easy-appointments\";s:4:\"slug\";s:17:\"easy-appointments\";s:6:\"plugin\";s:26:\"easy-appointments/main.php\";s:11:\"new_version\";s:6:\"3.10.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/easy-appointments/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/easy-appointments.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/easy-appointments/assets/icon-256x256.png?rev=1472759\";s:2:\"1x\";s:70:\"https://ps.w.org/easy-appointments/assets/icon-128x128.png?rev=1472759\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/easy-appointments/assets/banner-1544x500.png?rev=2169533\";s:2:\"1x\";s:72:\"https://ps.w.org/easy-appointments/assets/banner-772x250.png?rev=2169533\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.7\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s: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.2.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:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.8.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:59:\"medical-addon-for-elementor/medical-addon-for-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:41:\"w.org/plugins/medical-addon-for-elementor\";s:4:\"slug\";s:27:\"medical-addon-for-elementor\";s:6:\"plugin\";s:59:\"medical-addon-for-elementor/medical-addon-for-elementor.php\";s:11:\"new_version\";s:5:\"1.3.1\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/medical-addon-for-elementor/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/medical-addon-for-elementor.1.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/medical-addon-for-elementor/assets/icon-256x256.png?rev=2223446\";s:2:\"1x\";s:80:\"https://ps.w.org/medical-addon-for-elementor/assets/icon-128x128.png?rev=2223446\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/medical-addon-for-elementor/assets/banner-1544x500.png?rev=2223446\";s:2:\"1x\";s:82:\"https://ps.w.org/medical-addon-for-elementor/assets/banner-772x250.png?rev=2223446\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:47:\"one-click-demo-import/one-click-demo-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:35:\"w.org/plugins/one-click-demo-import\";s:4:\"slug\";s:21:\"one-click-demo-import\";s:6:\"plugin\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/one-click-demo-import/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/one-click-demo-import.3.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-256x256.png?rev=2506685\";s:2:\"1x\";s:74:\"https://ps.w.org/one-click-demo-import/assets/icon-128x128.png?rev=2506685\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/one-click-demo-import/assets/banner-1544x500.png?rev=2506685\";s:2:\"1x\";s:76:\"https://ps.w.org/one-click-demo-import/assets/banner-772x250.png?rev=2506685\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:5:\"2.4.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/svg-support.2.4.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:64:\"https://ps.w.org/svg-support/assets/icon-256x256.png?rev=1417738\";s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:41:\"widget-css-classes/widget-css-classes.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/widget-css-classes\";s:4:\"slug\";s:18:\"widget-css-classes\";s:6:\"plugin\";s:41:\"widget-css-classes/widget-css-classes.php\";s:11:\"new_version\";s:7:\"1.5.4.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/widget-css-classes/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/widget-css-classes.1.5.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/widget-css-classes/assets/icon-256x256.jpg?rev=1130657\";s:2:\"1x\";s:71:\"https://ps.w.org/widget-css-classes/assets/icon-128x128.jpg?rev=1130657\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/widget-css-classes/assets/banner-1544x500.jpg?rev=1130650\";s:2:\"1x\";s:73:\"https://ps.w.org/widget-css-classes/assets/banner-772x250.jpg?rev=1130650\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"6.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}}s:7:\"checked\";a:14:{s:30:\"advanced-custom-fields/acf.php\";s:6:\"5.12.2\";s:19:\"akismet/akismet.php\";s:5:\"4.2.3\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:5:\"7.0.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.6\";s:26:\"easy-appointments/main.php\";s:6:\"3.10.1\";s:23:\"elementor/elementor.php\";s:5:\"3.6.5\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:5:\"4.8.7\";s:59:\"medical-addon-for-elementor/medical-addon-for-elementor.php\";s:5:\"1.3.1\";s:47:\"one-click-demo-import/one-click-demo-import.php\";s:5:\"3.1.1\";s:23:\"revslider/revslider.php\";s:6:\"6.5.21\";s:27:\"svg-support/svg-support.php\";s:5:\"2.4.2\";s:41:\"widget-css-classes/widget-css-classes.php\";s:7:\"1.5.4.1\";s:27:\"woocommerce/woocommerce.php\";s:5:\"6.5.1\";}}','no'),(1635,'_transient_timeout_mc4wp_mailchimp_lists','1653040798','no'),(1636,'_transient_mc4wp_mailchimp_lists','a:0:{}','no'),(1637,'_transient_timeout_global_styles_clilab-child','1652954459','no'),(1638,'_transient_global_styles_clilab-child','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(1639,'_transient_timeout_global_styles_svg_filters_clilab-child','1652954459','no'),(1640,'_transient_global_styles_svg_filters_clilab-child','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(1642,'_transient_timeout__woocommerce_helper_subscriptions','1652955301','no'),(1643,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(1644,'_site_transient_timeout_theme_roots','1652956201','no'),(1645,'_site_transient_theme_roots','a:5:{s:12:\"clilab-child\";s:7:\"/themes\";s:6:\"clilab\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(1646,'_transient_timeout__woocommerce_helper_updates','1652997601','no'),(1647,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1652954401;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','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,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4778 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'),(7,7,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(8,7,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(9,7,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(10,7,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(11,7,'_additional_settings',''),(12,7,'_locale','en_US'),(13,8,'_elementor_edit_mode','builder'),(14,8,'_elementor_template_type','kit'),(15,9,'_wp_attached_file','woocommerce-placeholder.png'),(16,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17,15,'_wp_attached_file','2022/05/log_file_2022-05-17__08-14-57.txt'),(18,16,'_wp_attached_file','2021/08/woocommerce-placeholder.png'),(19,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2021/08/woocommerce-placeholder.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20,19,'_wp_attached_file','2021/08/log_file_2021-08-17__09-48-34.txt'),(21,20,'_wp_attached_file','2021/07/woocommerce-placeholder.png'),(22,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2021/07/woocommerce-placeholder.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23,1736,'_wp_attached_file','2021/08/slider02.jpg'),(24,1736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:700;s:4:\"file\";s:20:\"2021/08/slider02.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"slider02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"slider02-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slider02-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider02-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"slider02-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"slider02-1536x640.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"slider02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"slider02-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25,1737,'_wp_attached_file','2021/08/slider01.jpg'),(26,1737,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:700;s:4:\"file\";s:20:\"2021/08/slider01.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"slider01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"slider01-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slider01-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider01-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"slider01-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"slider01-1536x640.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27,1738,'_wp_attached_file','2022/05/log_file_2022-05-17__09-11-45.txt'),(28,1739,'_wp_attached_file','2021/08/slider03.jpg'),(29,1739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:700;s:4:\"file\";s:20:\"2021/08/slider03.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"slider03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"slider03-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slider03-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider03-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"slider03-768x320.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"slider03-1536x640.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"slider03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"slider03-600x250.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30,1740,'_wp_attached_file','2021/08/bg3.jpg'),(31,1740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:998;s:4:\"file\";s:15:\"2021/08/bg3.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"bg3-600x479.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg3-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg3-1024x818.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg3-768x613.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:15:\"bg3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"bg3-600x479.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(32,1741,'_wp_attached_file','2021/08/favico.png'),(33,1741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:18:\"2021/08/favico.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"favico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"favico-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"favico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"favico-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"favico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"favico-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(34,1750,'_wp_attached_file','2021/08/cheque-3.svg'),(35,1750,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:12:\"cheque-3.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"cheque-3.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(36,1750,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>'),(38,1751,'_wp_attached_file','2021/08/event-create-1.svg'),(39,1751,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:18:\"event-create-1.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"event-create-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(40,1751,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>'),(42,1753,'_wp_attached_file','2021/08/stethoscope.svg'),(43,1753,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:15:\"stethoscope.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"stethoscope.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(44,1753,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>'),(46,1759,'_wp_attached_file','2021/08/square-pin-1.svg'),(47,1759,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:16:\"square-pin-1.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"square-pin-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(48,1759,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>'),(50,1761,'_wp_attached_file','2021/08/Rectangle-Copy-28-13.jpeg'),(51,1761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2021/08/Rectangle-Copy-28-13.jpeg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-600x231.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-300x115.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-768x295.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-600x231.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-28-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53,1762,'_wp_attached_file','2021/08/Rectangle-Copy-35-13.jpeg'),(54,1762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2021/08/Rectangle-Copy-35-13.jpeg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-600x231.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-300x115.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-768x295.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-600x231.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-35-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56,1763,'_wp_attached_file','2021/08/Rectangle-Copy-36-13.jpeg'),(57,1763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2021/08/Rectangle-Copy-36-13.jpeg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-600x231.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-300x115.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-768x295.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-600x231.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Rectangle-Copy-36-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(59,1764,'_wp_attached_file','2021/08/Artboard-11.png'),(60,1764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2021/08/Artboard-11.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Artboard-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Artboard-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Artboard-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Artboard-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"Artboard-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Artboard-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(62,1765,'_wp_attached_file','2021/08/Artboard-Copy-11-11.png'),(63,1765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-11-11.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-11-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-11-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-11-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-11-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-11-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-11-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(65,1766,'_wp_attached_file','2021/08/Artboard-Copy-12-11.png'),(66,1766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-12-11.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-12-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-12-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-12-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-12-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-12-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-12-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(68,1767,'_wp_attached_file','2021/08/Artboard-Copy-13-11.png'),(69,1767,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-13-11.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-13-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-13-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-13-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-13-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-13-11-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-13-11-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(71,1768,'_wp_attached_file','2021/08/Artboard-Copy-14-12.png'),(72,1768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-14-12.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-14-12-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-14-12-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-14-12-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-14-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-14-12-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-14-12-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(74,1769,'_wp_attached_file','2021/08/imgb1-13.jpeg'),(75,1769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2021/08/imgb1-13.jpeg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"imgb1-13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"imgb1-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"imgb1-13-600x234.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"imgb1-13-300x117.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"imgb1-13-1024x400.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"imgb1-13-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"imgb1-13-768x300.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"imgb1-13-1536x600.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"imgb1-13-2048x800.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:21:\"imgb1-13-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"imgb1-13-600x234.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"imgb1-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77,1770,'_wp_attached_file','2021/08/brain.svg'),(78,1770,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:9:\"brain.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"brain.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(79,1770,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>'),(81,1771,'_wp_attached_file','2021/08/c-pulse.svg'),(82,1771,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:11:\"c-pulse.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"c-pulse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(83,1771,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>c pulse</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><polyline points=\"9 32 17 32 24 16 40 48 47 32 55 32\" stroke=\"#029967\"></polyline><circle cx=\"32\" cy=\"32\" r=\"29\"></circle></g></svg>'),(85,1772,'_wp_attached_file','2021/08/child.svg'),(86,1772,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:9:\"child.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"child.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(87,1772,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>'),(89,1773,'_wp_attached_file','2021/08/circle-arrow-down.svg'),(90,1773,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:21:\"circle-arrow-down.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(91,1773,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>circle arrow down</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#ffffff\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"29\"></circle><line data-cap=\"butt\" x1=\"32\" y1=\"48\" x2=\"32\" y2=\"16\" stroke-linecap=\"butt\" stroke=\"#ffffff\"></line><polyline points=\"43 37 32 48 21 37\" stroke=\"#ffffff\"></polyline></g></svg>'),(93,1774,'_wp_attached_file','2021/08/diamond.svg'),(94,1774,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:11:\"diamond.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"diamond.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(95,1774,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>diamond</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"3\" y1=\"22\" x2=\"61\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><polyline data-cap=\"butt\" points=\"32,60 42,22 32,5 \" stroke-linecap=\"butt\" stroke=\"#029967\"></polyline><polyline data-cap=\"butt\" points=\"32,5 22,22 32,60 \" stroke-linecap=\"butt\" stroke=\"#029967\"></polyline><line data-cap=\"butt\" x1=\"13\" y1=\"5\" x2=\"22\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"51\" y1=\"5\" x2=\"42\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><polygon points=\"61,22 32,60 3,22 13,5 51,5 \"></polygon></g></svg>'),(97,1775,'_wp_attached_file','2021/08/dont-touch-eyes.svg'),(98,1775,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"dont-touch-eyes.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(99,1775,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>'),(101,1776,'_wp_attached_file','2021/08/event-create.svg'),(102,1776,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:16:\"event-create.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"event-create.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(103,1776,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>'),(105,1777,'_wp_attached_file','2021/08/hands-heart.svg'),(106,1777,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:15:\"hands-heart.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hands-heart.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(107,1777,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>'),(109,1778,'_wp_attached_file','2021/08/hospital-34.svg'),(110,1778,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:15:\"hospital-34.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"hospital-34.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(111,1778,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>'),(113,1779,'_wp_attached_file','2021/08/lungs-infection.svg'),(114,1779,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:19:\"lungs-infection.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:19:\"lungs-infection.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(115,1779,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>'),(117,1780,'_wp_attached_file','2021/08/medication.svg'),(118,1780,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:14:\"medication.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"medication.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(119,1780,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>'),(121,1781,'_wp_attached_file','2021/08/menu.svg'),(122,1781,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:48;s:6:\"height\";i:48;s:4:\"file\";s:8:\"menu.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"menu.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(123,1781,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\" class=\"nc-icon-wrapper\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>'),(125,1782,'_wp_attached_file','2021/08/military-medal.svg'),(126,1782,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:18:\"military-medal.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"military-medal.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(127,1782,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>military medal</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><polygon points=\"46 23 32 31 18 23 18 3 46 3 46 23\" data-cap=\"butt\" stroke-linecap=\"butt\"></polygon><line x1=\"18\" y1=\"11\" x2=\"46\" y2=\"11\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><line x1=\"24\" y1=\"11\" x2=\"24\" y2=\"26.429\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><line x1=\"40\" y1=\"11\" x2=\"40\" y2=\"26.429\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><polygon points=\"32 34.721 35.013 43.995 44.764 43.995 36.875 49.726 39.889 59 32 53.269 24.111 59 27.125 49.726 19.236 43.995 28.987 43.995 32 34.721\" data-cap=\"butt\" stroke-linecap=\"butt\" stroke=\"#029967\"></polygon></g></svg>'),(129,1783,'_wp_attached_file','2021/08/sports-fan.svg'),(130,1783,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:14:\"sports-fan.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"sports-fan.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(131,1783,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>sports fan</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path d=\"M4,21.378a75.579,75.579,0,0,1,56,0V7.169a78.421,78.421,0,0,0-56,0Z\" stroke=\"#029967\"></path><circle cx=\"32\" cy=\"34\" r=\"6\"></circle><path d=\"M41,62V52.929L59.335,33.29a2.533,2.533,0,0,0,.175-3.249h0a2.534,2.534,0,0,0-3.791-.3L40.873,44.153a3,3,0,0,1-2.09.847H25.217a3,3,0,0,1-2.09-.847L8.281,29.743a2.534,2.534,0,0,0-3.791.3h0a2.533,2.533,0,0,0,.175,3.249L23,52.929V62\"></path></g></svg>'),(133,1784,'_wp_attached_file','2021/08/syringe.svg'),(134,1784,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:11:\"syringe.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"syringe.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(135,1784,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>'),(137,1785,'_wp_attached_file','2021/08/tooth.svg'),(138,1785,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:9:\"tooth.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"tooth.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(139,1785,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>'),(141,1786,'_wp_attached_file','2021/08/verified.svg'),(142,1786,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:12:\"verified.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:12:\"verified.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(143,1786,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>verified</title><g fill=\"#d4f7e8\" class=\"nc-icon-wrapper\"><path d=\"M56.164,5.014l-24-4a1,1,0,0,0-.328,0l-24,4A1,1,0,0,0,7,6V36c0,7.7,4.3,14.81,12.422,20.566a51.914,51.914,0,0,0,12.262,6.382.986.986,0,0,0,.632,0,51.914,51.914,0,0,0,12.262-6.382C52.7,50.81,57,43.7,57,36V6A1,1,0,0,0,56.164,5.014ZM29.113,41.941,18.172,31,21,28.172l7.887,7.887,15.9-18.546,3.037,2.6Z\" fill=\"#d4f7e8\"></path></g></svg>'),(145,1787,'_wp_attached_file','2021/08/virtual-assistant-2-1.svg'),(146,1787,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:25:\"virtual-assistant-2-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(147,1787,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>'),(149,1788,'_wp_attached_file','2021/08/walk.svg'),(150,1788,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:8:\"walk.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"walk.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(151,1788,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>walk</title><g fill=\"#d4f7e8\" class=\"nc-icon-wrapper\"><circle cx=\"33.5\" cy=\"7.5\" r=\"6.5\" fill=\"#d4f7e8\"></circle><path d=\"M41.007,45.77l-7.568-6.8-2.251,7.592L36,49.336V59a3,3,0,0,0,6,0V48A3,3,0,0,0,41.007,45.77Z\" data-color=\"color-2\"></path><path d=\"M19.046,27.872l3.055-.278,1-6.28a7.614,7.614,0,0,1,.363-1.394l-6.828,1.612a3,3,0,0,0-2.171,1.856l-3.256,8.465a3.09,3.09,0,1,0,5.816,2.087Z\" data-color=\"color-2\"></path><path d=\"M53.91,26.272a3,3,0,0,0-3.638-2.183L43.349,25.82l-9.392-7.6a5.492,5.492,0,0,0-8.881,3.4l-6,37.686A5.513,5.513,0,0,0,19,60a3,3,0,0,0,5.934.622L34.785,27.4l6.442,3.923a4,4,0,0,0,3.038.456l7.462-1.866A3,3,0,0,0,53.91,26.272Z\" fill=\"#d4f7e8\"></path></g></svg>'),(153,1789,'_wp_attached_file','2021/08/wheelchair-2.svg'),(154,1789,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:16:\"wheelchair-2.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(155,1789,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>'),(157,1790,'_wp_attached_file','2021/08/pregnant-woman.svg'),(158,1790,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:18:\"pregnant-woman.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(159,1790,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>'),(161,1791,'_wp_attached_file','2021/08/image-from-rawpixel-id-3229594-png-11.jpeg'),(162,1791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:582;s:6:\"height\";i:654;s:4:\"file\";s:50:\"2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"image-from-rawpixel-id-3229594-png-11-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:50:\"image-from-rawpixel-id-3229594-png-11-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"image-from-rawpixel-id-3229594-png-11-267x300.jpeg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"image-from-rawpixel-id-3229594-png-11-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:50:\"image-from-rawpixel-id-3229594-png-11-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"image-from-rawpixel-id-3229594-png-11-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(164,1792,'_wp_attached_file','2021/08/telephone.svg'),(165,1792,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:13:\"telephone.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"telephone.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(166,1792,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" class=\"nc-icon-wrapper\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>'),(168,1794,'_wp_attached_file','2021/08/face.png'),(169,1794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:124;s:6:\"height\";i:51;s:4:\"file\";s:16:\"2021/08/face.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"face-100x51.png\";s:5:\"width\";i:100;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"face-100x51.png\";s:5:\"width\";i:100;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(171,1800,'_wp_attached_file','2021/08/image-from-rawpixel-id-3228523-png-1-14.png'),(172,1800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:728;s:4:\"file\";s:51:\"2021/08/image-from-rawpixel-id-3228523-png-1-14.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"image-from-rawpixel-id-3228523-png-1-14-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"image-from-rawpixel-id-3228523-png-1-14-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"image-from-rawpixel-id-3228523-png-1-14-237x300.png\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"image-from-rawpixel-id-3228523-png-1-14-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:51:\"image-from-rawpixel-id-3228523-png-1-14-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:51:\"image-from-rawpixel-id-3228523-png-1-14-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(174,1804,'_wp_attached_file','2021/07/b2-18.jpeg'),(175,1804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:18:\"2021/07/b2-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"b2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"b2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"b2-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"b2-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"b2-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"b2-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"b2-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"b2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"b2-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"b2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177,1806,'_wp_attached_file','2021/07/b4-18.jpeg'),(178,1806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:18:\"2021/07/b4-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"b4-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"b4-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"b4-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"b4-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"b4-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"b4-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"b4-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"b4-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"b4-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"b4-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(180,1807,'_wp_attached_file','2021/07/b5-18.jpeg'),(181,1807,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:18:\"2021/07/b5-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"b5-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"b5-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"b5-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"b5-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"b5-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"b5-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"b5-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"b5-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"b5-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"b5-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(183,1808,'_wp_attached_file','2021/07/b6-18.jpeg'),(184,1808,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:18:\"2021/07/b6-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"b6-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"b6-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"b6-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"b6-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"b6-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"b6-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"b6-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"b6-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"b6-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"b6-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(186,1809,'_wp_attached_file','2021/07/b8-19.jpeg'),(187,1809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:18:\"2021/07/b8-19.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"b8-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"b8-19-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"b8-19-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"b8-19-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"b8-19-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"b8-19-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"b8-19-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"b8-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"b8-19-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"b8-19-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(189,1810,'_wp_attached_file','2021/07/b11-18.jpeg'),(190,1810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/07/b11-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"b11-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"b11-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"b11-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"b11-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"b11-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"b11-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"b11-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"b11-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"b11-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"b11-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(192,1811,'_wp_attached_file','2021/07/b12-18.jpeg'),(193,1811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/07/b12-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"b12-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"b12-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"b12-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"b12-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"b12-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"b12-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"b12-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"b12-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"b12-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"b12-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(195,1812,'_wp_attached_file','2021/07/b13-18.jpeg'),(196,1812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/07/b13-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"b13-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"b13-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"b13-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"b13-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"b13-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"b13-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"b13-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"b13-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"b13-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"b13-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(198,1813,'_wp_attached_file','2021/07/b14-18.jpeg'),(199,1813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/07/b14-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"b14-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"b14-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"b14-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"b14-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"b14-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"b14-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"b14-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"b14-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"b14-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"b14-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(201,1814,'_wp_attached_file','2021/07/b16-18.jpeg'),(202,1814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/07/b16-18.jpeg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"b16-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"b16-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"b16-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"b16-18-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"b16-18-1024x512.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"b16-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"b16-18-768x384.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"b16-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"b16-18-600x300.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"b16-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(204,1827,'_wp_attached_file','2021/08/Artboard-9-12.jpeg'),(205,1827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:730;s:6:\"height\";i:640;s:4:\"file\";s:26:\"2021/08/Artboard-9-12.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-9-12-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-9-12-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-9-12-600x526.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-9-12-300x263.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-9-12-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-9-12-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-9-12-600x526.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-9-12-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(207,1831,'_wp_attached_file','2021/08/bg-sidebar.jpg'),(208,1831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2021/08/bg-sidebar.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"bg-sidebar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-600x444.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-sidebar-1024x759.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-768x569.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"bg-sidebar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-600x444.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-sidebar-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(209,1833,'_wp_attached_file','2021/08/pin-3-1.svg'),(210,1833,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:11:\"pin-3-1.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:11:\"pin-3-1.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(211,1833,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pin 3</title><g fill=\"#ffffff\" class=\"nc-icon-wrapper\"><path fill=\"#ffffff\" d=\"M32,1C20.694,1,9,9.639,9,24.095C9,39.24,30.383,60.797,31.293,61.707C31.48,61.895,31.735,62,32,62 s0.52-0.105,0.707-0.293C33.617,60.797,55,39.24,55,24.095C55,9.639,43.306,1,32,1z M32,32c-4.418,0-8-3.582-8-8s3.582-8,8-8 s8,3.582,8,8S36.418,32,32,32z\"></path></g></svg>'),(213,1834,'_wp_attached_file','2021/08/glb.jpg'),(214,1834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:808;s:6:\"height\";i:808;s:4:\"file\";s:15:\"2021/08/glb.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"glb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"glb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"glb-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"glb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"glb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"glb-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:15:\"glb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"glb-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"glb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(216,1838,'_wp_attached_file','2021/08/bg-map.png'),(217,1838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1821;s:6:\"height\";i:907;s:4:\"file\";s:18:\"2021/08/bg-map.png\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"bg-map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"bg-map-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"bg-map-600x299.png\";s:5:\"width\";i:600;s:6:\"height\";i:299;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"bg-map-300x149.png\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"bg-map-1024x510.png\";s:5:\"width\";i:1024;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"bg-map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"bg-map-768x383.png\";s:5:\"width\";i:768;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"bg-map-1536x765.png\";s:5:\"width\";i:1536;s:6:\"height\";i:765;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"bg-map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"bg-map-600x299.png\";s:5:\"width\";i:600;s:6:\"height\";i:299;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"bg-map-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(219,1842,'_wp_attached_file','2021/08/bg-1.jpg'),(220,1842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:532;s:4:\"file\";s:16:\"2021/08/bg-1.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"bg-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"bg-1-600x190.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bg-1-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg-1-1024x324.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"bg-1-768x243.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"bg-1-1536x486.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:16:\"bg-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"bg-1-600x190.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(222,1846,'_wp_attached_file','2021/08/Bitmap.jpg'),(223,1846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2021/08/Bitmap.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"Bitmap-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"Bitmap-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"Bitmap-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Bitmap-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Bitmap-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Bitmap-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Bitmap-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"Bitmap-1536x600.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:19:\"Bitmap-2048x800.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"Bitmap-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"Bitmap-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"Bitmap-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(225,1853,'_wp_attached_file','2021/08/banner1-10.jpeg'),(226,1853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:625;s:6:\"height\";i:250;s:4:\"file\";s:23:\"2021/08/banner1-10.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"banner1-10-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"banner1-10-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"banner1-10-600x240.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"banner1-10-300x120.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"banner1-10-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"banner1-10-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"banner1-10-600x240.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"banner1-10-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(228,1854,'_wp_attached_file','2021/08/banner2-8.jpeg'),(229,1854,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:625;s:6:\"height\";i:250;s:4:\"file\";s:22:\"2021/08/banner2-8.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"banner2-8-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"banner2-8-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"banner2-8-600x240.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"banner2-8-300x120.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"banner2-8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"banner2-8-300x250.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"banner2-8-600x240.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"banner2-8-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(231,1855,'_wp_attached_file','2021/08/a2-13.jpeg'),(232,1855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:140;s:4:\"file\";s:18:\"2021/08/a2-13.jpeg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"a2-13-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"a2-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"a2-13-300x95.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"a2-13-150x140.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"a2-13-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"a2-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(234,1856,'_wp_attached_file','2021/08/a1-13.jpeg'),(235,1856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:140;s:4:\"file\";s:18:\"2021/08/a1-13.jpeg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"a1-13-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"a1-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"a1-13-300x95.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"a1-13-150x140.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"a1-13-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"a1-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(237,1857,'_wp_attached_file','2021/08/a4-13.jpeg'),(238,1857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:140;s:4:\"file\";s:18:\"2021/08/a4-13.jpeg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"a4-13-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"a4-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"a4-13-300x95.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"a4-13-150x140.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"a4-13-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"a4-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(240,1858,'_wp_attached_file','2021/08/a3-13.jpeg'),(241,1858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:140;s:4:\"file\";s:18:\"2021/08/a3-13.jpeg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"a3-13-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"a3-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"a3-13-300x95.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"a3-13-150x140.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:18:\"a3-13-300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"a3-13-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(243,1866,'_wp_attached_file','2021/08/bg-shop.jpg'),(244,1866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:730;s:4:\"file\";s:19:\"2021/08/bg-shop.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"bg-shop-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"bg-shop-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"bg-shop-600x261.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:261;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"bg-shop-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"bg-shop-1024x445.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bg-shop-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"bg-shop-768x334.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"bg-shop-1536x667.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"bg-shop-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"bg-shop-600x261.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:261;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"bg-shop-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(246,1867,'_wp_attached_file','2021/08/imagebox-9.jpeg'),(247,1867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:150;s:4:\"file\";s:23:\"2021/08/imagebox-9.jpeg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"imagebox-9-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"imagebox-9-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"imagebox-9-300x115.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"imagebox-9-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"imagebox-9-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"imagebox-9-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249,1868,'_wp_attached_file','2021/08/imagebox2-8.jpeg'),(250,1868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2021/08/imagebox2-8.jpeg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"imagebox2-8-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"imagebox2-8-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"imagebox2-8-300x115.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"imagebox2-8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"imagebox2-8-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"imagebox2-8-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(252,1869,'_wp_attached_file','2021/08/imagebox3-8.jpeg'),(253,1869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2021/08/imagebox3-8.jpeg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"imagebox3-8-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"imagebox3-8-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"imagebox3-8-300x115.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"imagebox3-8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"imagebox3-8-300x150.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"imagebox3-8-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(255,1873,'_wp_attached_file','2021/08/bg_ab-scaled-1.jpg'),(256,1873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1717;s:4:\"file\";s:26:\"2021/08/bg_ab-scaled-1.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"bg_ab-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"bg_ab-scaled-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"bg_ab-scaled-1-600x402.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"bg_ab-scaled-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"bg_ab-scaled-1-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"bg_ab-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"bg_ab-scaled-1-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"bg_ab-scaled-1-1536x1030.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1030;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"bg_ab-scaled-1-2048x1374.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"bg_ab-scaled-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"bg_ab-scaled-1-600x402.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"bg_ab-scaled-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(258,1877,'_wp_attached_file','2021/08/bg2.jpg'),(259,1877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:532;s:4:\"file\";s:15:\"2021/08/bg2.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bg2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"bg2-600x190.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"bg2-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"bg2-1024x324.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"bg2-768x243.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"bg2-1536x486.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:15:\"bg2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"bg2-600x190.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(261,1891,'_wp_attached_file','2021/08/Artboard-1-4-12.jpeg'),(262,1891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:803;s:6:\"height\";i:367;s:4:\"file\";s:28:\"2021/08/Artboard-1-4-12.jpeg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Artboard-1-4-12-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-4-12-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Artboard-1-4-12-600x274.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Artboard-1-4-12-300x137.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-4-12-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Artboard-1-4-12-768x351.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"Artboard-1-4-12-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"Artboard-1-4-12-600x274.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-4-12-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(264,1892,'_wp_attached_file','2021/08/Artboard-Copy-1-12.jpeg'),(265,1892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:803;s:6:\"height\";i:367;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-1-12.jpeg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-600x274.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-300x137.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-768x351.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:351;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-600x274.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-1-12-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(267,1900,'_wp_attached_file','2021/08/mouse.svg'),(268,1900,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:9:\"mouse.svg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"woocommerce_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";d:150;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";d:300;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";d:768;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";d:1024;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"shop_catalog\";a:6:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"shop_thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";d:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"mouse.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(269,1900,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>mouse</title><g fill=\"#d4f7e8\" class=\"nc-icon-wrapper\"><path d=\"M32,2A20.023,20.023,0,0,0,12,22V42a20,20,0,0,0,40,0V22A20.023,20.023,0,0,0,32,2Zm1,27a1,1,0,0,1-2,0V15a1,1,0,0,1,2,0Z\" fill=\"#d4f7e8\"></path></g></svg>'),(271,1904,'_wp_attached_file','2021/08/Artboard-Copy-2-18.jpeg'),(272,1904,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-2-18.jpeg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-2-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(273,1905,'_wp_attached_file','2021/08/Artboard-Copy-3-18.jpeg'),(274,1905,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-3-18.jpeg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-3-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(275,1906,'_wp_attached_file','2021/08/Artboard-Copy-6-18.jpeg'),(276,1906,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-6-18.jpeg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-6-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-6-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-6-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(277,1907,'_wp_attached_file','2021/08/Artboard-Copy-25.jpeg'),(278,1907,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:29:\"2021/08/Artboard-Copy-25.jpeg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-25-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-25-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Artboard-Copy-25-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(279,1908,'_wp_attached_file','2021/08/Artboard-Copy-72-18.jpeg'),(280,1908,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:32:\"2021/08/Artboard-Copy-72-18.jpeg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-72-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-72-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-72-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(281,1909,'_wp_attached_file','2021/08/favico-1.png'),(282,1909,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:20:\"2021/08/favico-1.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"favico-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"favico-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"favico-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"favico-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:20:\"favico-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"favico-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(283,1910,'_wp_attached_file','2021/08/tg1-18.jpeg'),(284,1910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:19:\"2021/08/tg1-18.jpeg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"tg1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"tg1-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"tg1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(285,1911,'_wp_attached_file','2021/08/Artboard-Copy-5-18.jpeg'),(286,1911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:31:\"2021/08/Artboard-Copy-5-18.jpeg\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-5-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-5-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-5-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(287,1912,'_wp_attached_file','2021/07/Artboard-3-18.jpeg'),(288,1912,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/07/Artboard-3-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-3-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-3-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(290,1913,'_wp_attached_file','2021/07/Artboard-Copy-8-2-1-18.jpeg'),(291,1913,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2021/07/Artboard-Copy-8-2-1-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-8-2-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-2-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-2-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-2-1-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-2-1-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-8-2-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-2-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-2-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(293,1914,'_wp_attached_file','2021/07/Artboard-8-18.jpeg'),(294,1914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/07/Artboard-8-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-8-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-8-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-8-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-8-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-8-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-8-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-8-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-8-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(296,1915,'_wp_attached_file','2021/07/Artboard-Copy-8-7-18.jpeg'),(297,1915,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-8-7-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-7-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-7-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-7-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-7-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-7-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-7-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-7-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-7-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(299,1916,'_wp_attached_file','2021/07/Artboard-Copy-8-1-21.jpeg'),(300,1916,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-8-1-21.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-1-21-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-1-21-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-1-21-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-1-21-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-1-21-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-1-21-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-1-21-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-1-21-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(302,1917,'_wp_attached_file','2021/07/Artboard-Copy-10-19.jpeg'),(303,1917,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2021/07/Artboard-Copy-10-19.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Artboard-Copy-10-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-10-19-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-10-19-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-10-19-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-10-19-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"Artboard-Copy-10-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-10-19-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Artboard-Copy-10-19-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(305,1918,'_wp_attached_file','2021/07/Artboard-Copy-9-21.jpeg'),(306,1918,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2021/07/Artboard-Copy-9-21.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-9-21-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-9-21-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-9-21-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-9-21-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-9-21-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-9-21-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-9-21-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-9-21-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(308,1919,'_wp_attached_file','2021/07/Artboard-7-18.jpeg'),(309,1919,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/07/Artboard-7-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-7-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-7-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-7-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-7-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-7-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-7-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-7-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-7-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(311,1920,'_wp_attached_file','2021/07/Artboard-Copy-8-6-18.jpeg'),(312,1920,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-8-6-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-6-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-6-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-6-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-6-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-6-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-6-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-6-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-6-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(314,1922,'_wp_attached_file','2021/07/Artboard-2-18.jpeg'),(315,1922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/07/Artboard-2-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-2-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-2-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-2-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-2-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(317,1923,'_wp_attached_file','2021/07/Artboard-Copy-8-1-1-18.jpeg'),(318,1923,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2021/07/Artboard-Copy-8-1-1-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-1-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-1-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(320,1924,'_wp_attached_file','2021/07/Artboard-Copy-9-1-1-18.jpeg'),(321,1924,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2021/07/Artboard-Copy-9-1-1-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-9-1-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-9-1-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-9-1-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-9-1-1-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-9-1-1-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-9-1-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-9-1-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-9-1-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(323,1925,'_wp_attached_file','2021/07/Artboard-1-21.jpeg'),(324,1925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/07/Artboard-1-21.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-1-21-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-1-21-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-1-21-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-1-21-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-1-21-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-1-21-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-1-21-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-1-21-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(326,1926,'_wp_attached_file','2021/07/Artboard-1-1-18.jpeg'),(327,1926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2021/07/Artboard-1-1-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Artboard-1-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Artboard-1-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Artboard-1-1-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-1-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"Artboard-1-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"Artboard-1-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(329,1927,'_wp_attached_file','2021/07/Artboard-Copy-8-2-19.jpeg'),(330,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-8-2-19.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-2-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-2-19-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-2-19-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-2-19-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-2-19-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-2-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-2-19-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-2-19-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(332,1928,'_wp_attached_file','2021/07/Artboard-Copy-10-1-18.jpeg'),(333,1928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2021/07/Artboard-Copy-10-1-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"Artboard-Copy-10-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"Artboard-Copy-10-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"Artboard-Copy-10-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Artboard-Copy-10-1-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Artboard-Copy-10-1-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:34:\"Artboard-Copy-10-1-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"Artboard-Copy-10-1-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"Artboard-Copy-10-1-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(335,1929,'_wp_attached_file','2021/07/Artboard-Copy-9-1-19.jpeg'),(336,1929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-9-1-19.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-9-1-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-1-19-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-1-19-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-1-19-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-1-19-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-9-1-19-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-1-19-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-1-19-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(338,1930,'_wp_attached_file','2021/07/Artboard-5-18.jpeg'),(339,1930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/07/Artboard-5-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-5-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-5-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-5-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-5-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-5-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-5-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-5-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-5-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(341,1931,'_wp_attached_file','2021/07/Artboard-Copy-9-3-18.jpeg'),(342,1931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-9-3-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-9-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-3-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-3-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-9-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(344,1932,'_wp_attached_file','2021/07/Artboard-Copy-8-4-18.jpeg'),(345,1932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-8-4-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-4-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-4-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-4-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-4-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-4-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-4-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-4-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-4-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(347,1933,'_wp_attached_file','2021/07/Artboard-1-3-18.jpeg'),(348,1933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2021/07/Artboard-1-3-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Artboard-1-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Artboard-1-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Artboard-1-3-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-3-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"Artboard-1-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"Artboard-1-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(350,1934,'_wp_attached_file','2021/07/Artboard-Copy-8-1-3-18.jpeg'),(351,1934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2021/07/Artboard-Copy-8-1-3-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-3-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-3-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(353,1935,'_wp_attached_file','2021/07/Artboard-26.jpeg'),(354,1935,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2021/07/Artboard-26.jpeg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Artboard-26-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-26-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"Artboard-26-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Artboard-26-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-26-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Artboard-26-768x553.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"Artboard-26-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"Artboard-26-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Artboard-26-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(356,1936,'_wp_attached_file','2021/07/Artboard-Copy-8-25.jpeg'),(357,1936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:720;s:4:\"file\";s:31:\"2021/07/Artboard-Copy-8-25.jpeg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-768x553.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Artboard-Copy-8-25-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(359,1937,'_wp_attached_file','2021/07/Artboard-1-2-18.jpeg'),(360,1937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:28:\"2021/07/Artboard-1-2-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Artboard-1-2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Artboard-1-2-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Artboard-1-2-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-2-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"Artboard-1-2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"Artboard-1-2-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Artboard-1-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(362,1938,'_wp_attached_file','2021/07/Artboard-Copy-9-2-18.jpeg'),(363,1938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-9-2-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-9-2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-2-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-2-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-2-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-9-2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-2-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-9-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(365,1939,'_wp_attached_file','2021/07/Artboard-Copy-8-1-2-18.jpeg'),(366,1939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2021/07/Artboard-Copy-8-1-2-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-2-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-2-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-2-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-2-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-2-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Artboard-Copy-8-1-2-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(368,1940,'_wp_attached_file','2021/07/Artboard-6-18.jpeg'),(369,1940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/07/Artboard-6-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-6-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-6-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-6-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-6-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-6-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-6-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-6-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-6-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(371,1941,'_wp_attached_file','2021/07/Artboard-Copy-8-5-18.jpeg'),(372,1941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-8-5-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-5-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-5-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-5-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-5-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-5-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-5-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-5-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-5-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(374,1942,'_wp_attached_file','2021/07/Artboard-4-18.jpeg'),(375,1942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2021/07/Artboard-4-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Artboard-4-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-4-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Artboard-4-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Artboard-4-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-4-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"Artboard-4-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Artboard-4-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Artboard-4-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(377,1943,'_wp_attached_file','2021/07/Artboard-Copy-8-3-18.jpeg'),(378,1943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:695;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/07/Artboard-Copy-8-3-18.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-3-18-300x216.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-3-18-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"Artboard-Copy-8-3-18-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-3-18-600x432.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Artboard-Copy-8-3-18-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(380,1945,'_wp_attached_file','2021/08/cropped-favico.png'),(381,1945,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:26:\"2021/08/cropped-favico.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-favico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-favico-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-favico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-favico-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"cropped-favico-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-favico-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(382,1945,'_wp_attachment_context','site-icon'),(383,1946,'_elementor_edit_mode','builder'),(384,1946,'_elementor_template_type','kit'),(385,1946,'inline_featured_image','0'),(386,1946,'_wp_page_template','default'),(387,1946,'_elementor_page_settings','a:1:{s:16:\"site_description\";s:41:\"WP Theme for Medical, HealthCare Services\";}'),(388,18,'inline_featured_image','0'),(389,18,'_elementor_edit_mode','builder'),(390,18,'_elementor_template_type','kit'),(391,18,'_elementor_version','3.3.1'),(392,18,'_wp_page_template','default'),(393,18,'_elementor_page_settings','a:12:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:4:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:4:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:4:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:4:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";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:0:\"\";s:9:\"site_name\";s:6:\"CliLab\";s:16:\"site_description\";s:41:\"WP Theme for Medical, HealthCare Services\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:15:\"activeItemIndex\";i:1;}'),(394,18,'_elementor_data','[]'),(395,18,'inline_featured_image','0'),(396,18,'_elementor_page_assets','a:0:{}'),(397,57,'_mc4wp_settings','a:9:{s:15:\"required_fields\";s:5:\"EMAIL\";s:12:\"double_optin\";s:1:\"1\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";s:15:\"subscriber_tags\";s:0:\"\";s:18:\"hide_after_success\";s:1:\"0\";s:8:\"redirect\";s:0:\"\";s:3:\"css\";s:1:\"0\";s:5:\"lists\";a:0:{}}'),(398,57,'text_subscribed','Thank you, your sign-up request was successful! Please check your email inbox to confirm.'),(399,57,'text_invalid_email','Please provide a valid email address.'),(400,57,'text_required_field_missing','Please fill in the required fields.'),(401,57,'text_already_subscribed','Given email address is already subscribed, thank you!'),(402,57,'text_error','Oops. Something went wrong. Please try again later.'),(403,57,'text_unsubscribed','You were successfully unsubscribed.'),(404,57,'text_not_subscribed','Given email address is not subscribed.'),(405,57,'text_no_lists_selected','Please select at least one list.'),(406,57,'text_updated','Thank you, your records have been updated!'),(407,57,'_wp_old_date','2021-07-09'),(408,84,'_menu_item_type','post_type'),(409,84,'_menu_item_menu_item_parent','0'),(410,84,'_menu_item_object_id','1642'),(411,84,'_menu_item_object','page'),(412,84,'_menu_item_target',''),(413,84,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(414,84,'_menu_item_xfn',''),(415,84,'_menu_item_url',''),(417,85,'_menu_item_type','post_type'),(418,85,'_menu_item_menu_item_parent','84'),(419,85,'_menu_item_object_id','22'),(420,85,'_menu_item_object','page'),(421,85,'_menu_item_target',''),(422,85,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(423,85,'_menu_item_xfn',''),(424,85,'_menu_item_url',''),(426,86,'_menu_item_type','post_type'),(427,86,'_menu_item_menu_item_parent','84'),(428,86,'_menu_item_object_id','23'),(429,86,'_menu_item_object','page'),(430,86,'_menu_item_target',''),(431,86,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(432,86,'_menu_item_xfn',''),(433,86,'_menu_item_url',''),(435,87,'_menu_item_type','post_type'),(436,87,'_menu_item_menu_item_parent','84'),(437,87,'_menu_item_object_id','21'),(438,87,'_menu_item_object','page'),(439,87,'_menu_item_target',''),(440,87,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(441,87,'_menu_item_xfn',''),(442,87,'_menu_item_url',''),(444,164,'_menu_item_type','post_type'),(445,164,'_menu_item_menu_item_parent','167'),(446,164,'_menu_item_object_id','23'),(447,164,'_menu_item_object','page'),(448,164,'_menu_item_target',''),(449,164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(450,164,'_menu_item_xfn',''),(451,164,'_menu_item_url',''),(452,164,'_wp_old_date','2021-07-09'),(453,164,'_wp_old_date','2021-07-24'),(455,165,'_menu_item_type','post_type'),(456,165,'_menu_item_menu_item_parent','167'),(457,165,'_menu_item_object_id','22'),(458,165,'_menu_item_object','page'),(459,165,'_menu_item_target',''),(460,165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(461,165,'_menu_item_xfn',''),(462,165,'_menu_item_url',''),(463,165,'_wp_old_date','2021-07-09'),(464,165,'_wp_old_date','2021-07-24'),(466,166,'_menu_item_type','post_type'),(467,166,'_menu_item_menu_item_parent','167'),(468,166,'_menu_item_object_id','21'),(469,166,'_menu_item_object','page'),(470,166,'_menu_item_target',''),(471,166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(472,166,'_menu_item_xfn',''),(473,166,'_menu_item_url',''),(474,166,'_wp_old_date','2021-07-09'),(475,166,'_wp_old_date','2021-07-24'),(477,167,'_menu_item_type','post_type'),(478,167,'_menu_item_menu_item_parent','0'),(479,167,'_menu_item_object_id','1642'),(480,167,'_menu_item_object','page'),(481,167,'_menu_item_target',''),(482,167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(483,167,'_menu_item_xfn',''),(484,167,'_menu_item_url',''),(485,167,'_wp_old_date','2021-07-09'),(486,167,'_wp_old_date','2021-07-24'),(488,380,'inline_featured_image','0'),(489,380,'_elementor_edit_mode','builder'),(490,380,'_elementor_template_type','section'),(491,380,'inline_featured_image','0'),(492,380,'_elementor_version','3.3.0'),(493,380,'_wp_page_template','default'),(494,380,'_elementor_data','[{\"id\":\"4e51392c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"11792671\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"6c91f824\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are some helpful links to get you answers faster.\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"640d95cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"35df4e87\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find Our More\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}]'),(495,380,'_elementor_page_assets','a:0:{}'),(496,380,'_elementor_controls_usage','a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(497,1253,'_menu_item_type','post_type'),(498,1253,'_menu_item_menu_item_parent','0'),(499,1253,'_menu_item_object_id','859'),(500,1253,'_menu_item_object','page'),(501,1253,'_menu_item_target',''),(502,1253,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(503,1253,'_menu_item_xfn',''),(504,1253,'_menu_item_url',''),(506,1254,'_menu_item_type','post_type'),(507,1254,'_menu_item_menu_item_parent','0'),(508,1254,'_menu_item_object_id','351'),(509,1254,'_menu_item_object','page'),(510,1254,'_menu_item_target',''),(511,1254,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(512,1254,'_menu_item_xfn',''),(513,1254,'_menu_item_url',''),(524,1256,'_menu_item_type','post_type'),(525,1256,'_menu_item_menu_item_parent','0'),(526,1256,'_menu_item_object_id','1078'),(527,1256,'_menu_item_object','page'),(528,1256,'_menu_item_target',''),(529,1256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(530,1256,'_menu_item_xfn',''),(531,1256,'_menu_item_url',''),(533,1257,'_menu_item_type','post_type'),(534,1257,'_menu_item_menu_item_parent','0'),(535,1257,'_menu_item_object_id','206'),(536,1257,'_menu_item_object','page'),(537,1257,'_menu_item_target',''),(538,1257,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(539,1257,'_menu_item_xfn',''),(540,1257,'_menu_item_url',''),(542,1258,'_menu_item_type','custom'),(543,1258,'_menu_item_menu_item_parent','0'),(544,1258,'_menu_item_object_id','1258'),(545,1258,'_menu_item_object','custom'),(546,1258,'_menu_item_target',''),(547,1258,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(548,1258,'_menu_item_xfn',''),(549,1258,'_menu_item_url','#'),(558,1260,'_menu_item_type','custom'),(559,1260,'_menu_item_menu_item_parent','0'),(560,1260,'_menu_item_object_id','1260'),(561,1260,'_menu_item_object','custom'),(562,1260,'_menu_item_target',''),(563,1260,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(564,1260,'_menu_item_xfn',''),(565,1260,'_menu_item_url','#'),(566,168,'_menu_item_type','post_type'),(567,168,'_menu_item_menu_item_parent','1547'),(568,168,'_menu_item_object_id','1947'),(569,168,'_menu_item_object','page'),(570,168,'_menu_item_target',''),(571,168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(572,168,'_menu_item_xfn',''),(573,168,'_menu_item_url',''),(574,168,'_wp_old_date','2021-07-09'),(575,168,'_wp_old_date','2021-07-24'),(577,173,'_menu_item_type','post_type'),(578,173,'_menu_item_menu_item_parent','0'),(579,173,'_menu_item_object_id','170'),(580,173,'_menu_item_object','page'),(581,173,'_menu_item_target',''),(582,173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(583,173,'_menu_item_xfn',''),(584,173,'_menu_item_url',''),(585,173,'_wp_old_date','2021-07-09'),(586,173,'_wp_old_date','2021-07-24'),(588,210,'_menu_item_type','post_type'),(589,210,'_menu_item_menu_item_parent','0'),(590,210,'_menu_item_object_id','206'),(591,210,'_menu_item_object','page'),(592,210,'_menu_item_target',''),(593,210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(594,210,'_menu_item_xfn',''),(595,210,'_menu_item_url',''),(596,210,'_wp_old_date','2021-07-12'),(597,210,'_wp_old_date','2021-07-15'),(599,423,'_menu_item_type','post_type'),(600,423,'_menu_item_menu_item_parent','0'),(601,423,'_menu_item_object_id','351'),(602,423,'_menu_item_object','page'),(603,423,'_menu_item_target',''),(604,423,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(605,423,'_menu_item_xfn',''),(606,423,'_menu_item_url',''),(607,423,'_wp_old_date','2021-07-15'),(609,933,'_menu_item_type','post_type'),(610,933,'_menu_item_menu_item_parent','0'),(611,933,'_menu_item_object_id','351'),(612,933,'_menu_item_object','page'),(613,933,'_menu_item_target',''),(614,933,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(615,933,'_menu_item_xfn',''),(616,933,'_menu_item_url',''),(617,933,'_wp_old_date','2021-07-21'),(618,933,'_wp_old_date','2021-07-22'),(619,933,'_wp_old_date','2021-07-25'),(620,933,'_wp_old_date','2021-07-26'),(621,933,'_wp_old_date','2021-07-27'),(622,933,'_wp_old_date','2021-07-29'),(624,938,'_menu_item_type','custom'),(625,938,'_menu_item_menu_item_parent','933'),(626,938,'_menu_item_object_id','938'),(627,938,'_menu_item_object','custom'),(628,938,'_menu_item_target',''),(629,938,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(630,938,'_menu_item_xfn',''),(631,938,'_menu_item_url','https://cli.21lab.co/about/#value'),(632,938,'_wp_old_date','2021-07-21'),(633,938,'_wp_old_date','2021-07-22'),(634,938,'_wp_old_date','2021-07-25'),(635,938,'_wp_old_date','2021-07-26'),(636,938,'_wp_old_date','2021-07-27'),(637,938,'_wp_old_date','2021-07-29'),(638,1261,'_menu_item_type','post_type'),(639,1261,'_menu_item_menu_item_parent','0'),(640,1261,'_menu_item_object_id','351'),(641,1261,'_menu_item_object','page'),(642,1261,'_menu_item_target',''),(643,1261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(644,1261,'_menu_item_xfn',''),(645,1261,'_menu_item_url',''),(646,1261,'_wp_old_date','2021-07-24'),(648,1262,'_menu_item_type','post_type'),(649,1262,'_menu_item_menu_item_parent','0'),(650,1262,'_menu_item_object_id','1078'),(651,1262,'_menu_item_object','page'),(652,1262,'_menu_item_target',''),(653,1262,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(654,1262,'_menu_item_xfn',''),(655,1262,'_menu_item_url',''),(656,1262,'_wp_old_date','2021-07-24'),(658,1263,'_menu_item_type','post_type'),(659,1263,'_menu_item_menu_item_parent','0'),(660,1263,'_menu_item_object_id','206'),(661,1263,'_menu_item_object','page'),(662,1263,'_menu_item_target',''),(663,1263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(664,1263,'_menu_item_xfn',''),(665,1263,'_menu_item_url',''),(666,1263,'_wp_old_date','2021-07-24'),(668,1264,'_menu_item_type','post_type'),(669,1264,'_menu_item_menu_item_parent','0'),(670,1264,'_menu_item_object_id','859'),(671,1264,'_menu_item_object','page'),(672,1264,'_menu_item_target',''),(673,1264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(674,1264,'_menu_item_xfn',''),(675,1264,'_menu_item_url',''),(676,1264,'_wp_old_date','2021-07-24'),(678,1265,'_menu_item_type','post_type'),(679,1265,'_menu_item_menu_item_parent','1264'),(680,1265,'_menu_item_object_id','1015'),(681,1265,'_menu_item_object','page'),(682,1265,'_menu_item_target',''),(683,1265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(684,1265,'_menu_item_xfn',''),(685,1265,'_menu_item_url',''),(686,1265,'_wp_old_date','2021-07-24'),(689,1547,'_menu_item_type','post_type'),(690,1547,'_menu_item_menu_item_parent','0'),(691,1547,'_menu_item_object_id','1947'),(692,1547,'_menu_item_object','page'),(693,1547,'_menu_item_target',''),(694,1547,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(695,1547,'_menu_item_xfn',''),(696,1547,'_menu_item_url',''),(698,1548,'_menu_item_type','post_type'),(699,1548,'_menu_item_menu_item_parent','1261'),(700,1548,'_menu_item_object_id','1293'),(701,1548,'_menu_item_object','page'),(702,1548,'_menu_item_target',''),(703,1548,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(704,1548,'_menu_item_xfn',''),(705,1548,'_menu_item_url',''),(708,1549,'_menu_item_type','post_type'),(709,1549,'_menu_item_menu_item_parent','1261'),(710,1549,'_menu_item_object_id','1301'),(711,1549,'_menu_item_object','page'),(712,1549,'_menu_item_target',''),(713,1549,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(714,1549,'_menu_item_xfn',''),(715,1549,'_menu_item_url',''),(718,1550,'_menu_item_type','post_type'),(719,1550,'_menu_item_menu_item_parent','1547'),(720,1550,'_menu_item_object_id','28'),(721,1550,'_menu_item_object','page'),(722,1550,'_menu_item_target',''),(723,1550,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(724,1550,'_menu_item_xfn',''),(725,1550,'_menu_item_url',''),(727,1551,'_menu_item_type','post_type'),(728,1551,'_menu_item_menu_item_parent','1547'),(729,1551,'_menu_item_object_id','1368'),(730,1551,'_menu_item_object','page'),(731,1551,'_menu_item_target',''),(732,1551,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(733,1551,'_menu_item_xfn',''),(734,1551,'_menu_item_url',''),(736,1552,'_menu_item_type','post_type'),(737,1552,'_menu_item_menu_item_parent','1547'),(738,1552,'_menu_item_object_id','1378'),(739,1552,'_menu_item_object','page'),(740,1552,'_menu_item_target',''),(741,1552,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(742,1552,'_menu_item_xfn',''),(743,1552,'_menu_item_url',''),(745,1553,'_menu_item_type','post_type'),(746,1553,'_menu_item_menu_item_parent','1264'),(747,1553,'_menu_item_object_id','1266'),(748,1553,'_menu_item_object','page'),(749,1553,'_menu_item_target',''),(750,1553,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(751,1553,'_menu_item_xfn',''),(752,1553,'_menu_item_url',''),(754,1640,'_menu_item_type','post_type'),(755,1640,'_menu_item_menu_item_parent','0'),(756,1640,'_menu_item_object_id','1266'),(757,1640,'_menu_item_object','page'),(758,1640,'_menu_item_target',''),(759,1640,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(760,1640,'_menu_item_xfn',''),(761,1640,'_menu_item_url',''),(763,1641,'_menu_item_type','post_type'),(764,1641,'_menu_item_menu_item_parent','0'),(765,1641,'_menu_item_object_id','1078'),(766,1641,'_menu_item_object','page'),(767,1641,'_menu_item_target',''),(768,1641,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(769,1641,'_menu_item_xfn',''),(770,1641,'_menu_item_url',''),(772,939,'_menu_item_type','custom'),(773,939,'_menu_item_menu_item_parent','933'),(774,939,'_menu_item_object_id','939'),(775,939,'_menu_item_object','custom'),(776,939,'_menu_item_target',''),(777,939,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(778,939,'_menu_item_xfn',''),(779,939,'_menu_item_url','https://cli.21lab.co/about/#why'),(780,939,'_wp_old_date','2021-07-21'),(781,939,'_wp_old_date','2021-07-22'),(782,939,'_wp_old_date','2021-07-25'),(783,939,'_wp_old_date','2021-07-26'),(784,939,'_wp_old_date','2021-07-27'),(785,939,'_wp_old_date','2021-07-29'),(786,940,'_menu_item_type','custom'),(787,940,'_menu_item_menu_item_parent','933'),(788,940,'_menu_item_object_id','940'),(789,940,'_menu_item_object','custom'),(790,940,'_menu_item_target',''),(791,940,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(792,940,'_menu_item_xfn',''),(793,940,'_menu_item_url','https://cli.21lab.co/about/#award'),(794,940,'_wp_old_date','2021-07-21'),(795,940,'_wp_old_date','2021-07-22'),(796,940,'_wp_old_date','2021-07-25'),(797,940,'_wp_old_date','2021-07-26'),(798,940,'_wp_old_date','2021-07-27'),(799,940,'_wp_old_date','2021-07-29'),(800,941,'_menu_item_type','custom'),(801,941,'_menu_item_menu_item_parent','933'),(802,941,'_menu_item_object_id','941'),(803,941,'_menu_item_object','custom'),(804,941,'_menu_item_target',''),(805,941,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(806,941,'_menu_item_xfn',''),(807,941,'_menu_item_url','https://cli.21lab.co/about/#faq'),(808,941,'_wp_old_date','2021-07-21'),(809,941,'_wp_old_date','2021-07-22'),(810,941,'_wp_old_date','2021-07-25'),(811,941,'_wp_old_date','2021-07-26'),(812,941,'_wp_old_date','2021-07-27'),(813,941,'_wp_old_date','2021-07-29'),(814,1073,'_menu_item_type','post_type'),(815,1073,'_menu_item_menu_item_parent','1074'),(816,1073,'_menu_item_object_id','1947'),(817,1073,'_menu_item_object','page'),(818,1073,'_menu_item_target',''),(819,1073,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(820,1073,'_menu_item_xfn',''),(821,1073,'_menu_item_url',''),(822,1073,'_wp_old_date','2021-07-22'),(823,1073,'_wp_old_date','2021-07-25'),(824,1073,'_wp_old_date','2021-07-26'),(825,1073,'_wp_old_date','2021-07-27'),(826,1073,'_wp_old_date','2021-07-29'),(828,1074,'_menu_item_type','custom'),(829,1074,'_menu_item_menu_item_parent','0'),(830,1074,'_menu_item_object_id','1074'),(831,1074,'_menu_item_object','custom'),(832,1074,'_menu_item_target',''),(833,1074,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(834,1074,'_menu_item_xfn',''),(835,1074,'_menu_item_url','#'),(836,1074,'_wp_old_date','2021-07-22'),(837,1074,'_wp_old_date','2021-07-25'),(838,1074,'_wp_old_date','2021-07-26'),(839,1074,'_wp_old_date','2021-07-27'),(840,1074,'_wp_old_date','2021-07-29'),(841,1075,'_menu_item_type','post_type'),(842,1075,'_menu_item_menu_item_parent','0'),(843,1075,'_menu_item_object_id','859'),(844,1075,'_menu_item_object','page'),(845,1075,'_menu_item_target',''),(846,1075,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(847,1075,'_menu_item_xfn',''),(848,1075,'_menu_item_url',''),(849,1075,'_wp_old_date','2021-07-22'),(850,1075,'_wp_old_date','2021-07-25'),(851,1075,'_wp_old_date','2021-07-26'),(852,1075,'_wp_old_date','2021-07-27'),(853,1075,'_wp_old_date','2021-07-29'),(855,1076,'_menu_item_type','post_type'),(856,1076,'_menu_item_menu_item_parent','1075'),(857,1076,'_menu_item_object_id','1015'),(858,1076,'_menu_item_object','page'),(859,1076,'_menu_item_target',''),(860,1076,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(861,1076,'_menu_item_xfn',''),(862,1076,'_menu_item_url',''),(863,1076,'_wp_old_date','2021-07-22'),(864,1076,'_wp_old_date','2021-07-25'),(865,1076,'_wp_old_date','2021-07-26'),(866,1076,'_wp_old_date','2021-07-27'),(867,1076,'_wp_old_date','2021-07-29'),(870,1077,'_menu_item_type','post_type'),(871,1077,'_menu_item_menu_item_parent','1075'),(872,1077,'_menu_item_object_id','859'),(873,1077,'_menu_item_object','page'),(874,1077,'_menu_item_target',''),(875,1077,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(876,1077,'_menu_item_xfn',''),(877,1077,'_menu_item_url',''),(878,1077,'_wp_old_date','2021-07-22'),(879,1077,'_wp_old_date','2021-07-25'),(880,1077,'_wp_old_date','2021-07-26'),(881,1077,'_wp_old_date','2021-07-27'),(882,1077,'_wp_old_date','2021-07-29'),(884,1080,'_menu_item_type','post_type'),(885,1080,'_menu_item_menu_item_parent','1081'),(886,1080,'_menu_item_object_id','1078'),(887,1080,'_menu_item_object','page'),(888,1080,'_menu_item_target',''),(889,1080,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(890,1080,'_menu_item_xfn',''),(891,1080,'_menu_item_url',''),(892,1080,'_wp_old_date','2021-07-22'),(893,1080,'_wp_old_date','2021-07-25'),(894,1080,'_wp_old_date','2021-07-26'),(895,1080,'_wp_old_date','2021-07-27'),(896,1080,'_wp_old_date','2021-07-29'),(898,1081,'_menu_item_type','post_type'),(899,1081,'_menu_item_menu_item_parent','0'),(900,1081,'_menu_item_object_id','206'),(901,1081,'_menu_item_object','page'),(902,1081,'_menu_item_target',''),(903,1081,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(904,1081,'_menu_item_xfn',''),(905,1081,'_menu_item_url',''),(906,1081,'_wp_old_date','2021-07-22'),(907,1081,'_wp_old_date','2021-07-25'),(908,1081,'_wp_old_date','2021-07-26'),(909,1081,'_wp_old_date','2021-07-27'),(910,1081,'_wp_old_date','2021-07-29'),(912,1082,'_menu_item_type','post_type'),(913,1082,'_menu_item_menu_item_parent','1081'),(914,1082,'_menu_item_object_id','206'),(915,1082,'_menu_item_object','page'),(916,1082,'_menu_item_target',''),(917,1082,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(918,1082,'_menu_item_xfn',''),(919,1082,'_menu_item_url',''),(920,1082,'_wp_old_date','2021-07-22'),(921,1082,'_wp_old_date','2021-07-25'),(922,1082,'_wp_old_date','2021-07-26'),(923,1082,'_wp_old_date','2021-07-27'),(924,1082,'_wp_old_date','2021-07-29'),(926,1086,'_menu_item_type','post_type'),(927,1086,'_menu_item_menu_item_parent','1081'),(928,1086,'_menu_item_object_id','1642'),(929,1086,'_menu_item_object','page'),(930,1086,'_menu_item_target',''),(931,1086,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(932,1086,'_menu_item_xfn',''),(933,1086,'_menu_item_url',''),(934,1086,'_wp_old_date','2021-07-22'),(935,1086,'_wp_old_date','2021-07-25'),(936,1086,'_wp_old_date','2021-07-26'),(937,1086,'_wp_old_date','2021-07-27'),(938,1086,'_wp_old_date','2021-07-29'),(940,1338,'_menu_item_type','post_type'),(941,1338,'_menu_item_menu_item_parent','933'),(942,1338,'_menu_item_object_id','1293'),(943,1338,'_menu_item_object','page'),(944,1338,'_menu_item_target',''),(945,1338,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(946,1338,'_menu_item_xfn',''),(947,1338,'_menu_item_url',''),(948,1338,'_wp_old_date','2021-07-25'),(949,1338,'_wp_old_date','2021-07-26'),(950,1338,'_wp_old_date','2021-07-27'),(951,1338,'_wp_old_date','2021-07-29'),(954,1339,'_menu_item_type','post_type'),(955,1339,'_menu_item_menu_item_parent','933'),(956,1339,'_menu_item_object_id','1301'),(957,1339,'_menu_item_object','page'),(958,1339,'_menu_item_target',''),(959,1339,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(960,1339,'_menu_item_xfn',''),(961,1339,'_menu_item_url',''),(962,1339,'_wp_old_date','2021-07-25'),(963,1339,'_wp_old_date','2021-07-26'),(964,1339,'_wp_old_date','2021-07-27'),(965,1339,'_wp_old_date','2021-07-29'),(968,1340,'_menu_item_type','post_type'),(969,1340,'_menu_item_menu_item_parent','933'),(970,1340,'_menu_item_object_id','351'),(971,1340,'_menu_item_object','page'),(972,1340,'_menu_item_target',''),(973,1340,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(974,1340,'_menu_item_xfn',''),(975,1340,'_menu_item_url',''),(976,1340,'_wp_old_date','2021-07-25'),(977,1340,'_wp_old_date','2021-07-26'),(978,1340,'_wp_old_date','2021-07-27'),(979,1340,'_wp_old_date','2021-07-29'),(981,1376,'_menu_item_type','post_type'),(982,1376,'_menu_item_menu_item_parent','1074'),(983,1376,'_menu_item_object_id','1368'),(984,1376,'_menu_item_object','page'),(985,1376,'_menu_item_target',''),(986,1376,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(987,1376,'_menu_item_xfn',''),(988,1376,'_menu_item_url',''),(989,1376,'_wp_old_date','2021-07-26'),(990,1376,'_wp_old_date','2021-07-27'),(991,1376,'_wp_old_date','2021-07-29'),(993,1377,'_menu_item_type','post_type'),(994,1377,'_menu_item_menu_item_parent','1074'),(995,1377,'_menu_item_object_id','28'),(996,1377,'_menu_item_object','page'),(997,1377,'_menu_item_target',''),(998,1377,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(999,1377,'_menu_item_xfn',''),(1000,1377,'_menu_item_url',''),(1001,1377,'_wp_old_date','2021-07-26'),(1002,1377,'_wp_old_date','2021-07-27'),(1003,1377,'_wp_old_date','2021-07-29'),(1005,1381,'_menu_item_type','post_type'),(1006,1381,'_menu_item_menu_item_parent','1074'),(1007,1381,'_menu_item_object_id','1378'),(1008,1381,'_menu_item_object','page'),(1009,1381,'_menu_item_target',''),(1010,1381,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1011,1381,'_menu_item_xfn',''),(1012,1381,'_menu_item_url',''),(1013,1381,'_wp_old_date','2021-07-26'),(1014,1381,'_wp_old_date','2021-07-27'),(1015,1381,'_wp_old_date','2021-07-29'),(1017,1546,'_menu_item_type','post_type'),(1018,1546,'_menu_item_menu_item_parent','1075'),(1019,1546,'_menu_item_object_id','1266'),(1020,1546,'_menu_item_object','page'),(1021,1546,'_menu_item_target',''),(1022,1546,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1023,1546,'_menu_item_xfn',''),(1024,1546,'_menu_item_url',''),(1025,1546,'_wp_old_date','2021-07-27'),(1026,1546,'_wp_old_date','2021-07-29'),(1028,1643,'_menu_item_type','post_type'),(1029,1643,'_menu_item_menu_item_parent','1081'),(1030,1643,'_menu_item_object_id','170'),(1031,1643,'_menu_item_object','page'),(1032,1643,'_menu_item_target',''),(1033,1643,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1034,1643,'_menu_item_xfn',''),(1035,1643,'_menu_item_url',''),(1036,1643,'_wp_old_date','2021-07-29'),(1038,1947,'inline_featured_image','0'),(1039,1947,'_wp_page_template','tmpl/template-fullwidth.php'),(1040,1947,'title',''),(1041,1947,'_title','field_595f05995871b'),(1042,1947,'subtitle',''),(1043,1947,'_subtitle','field_595f06045871c'),(1044,1947,'titlebarLayout','none'),(1045,1947,'_titlebarLayout','field_59fa9e15663bf'),(1046,1947,'titlebarAlign','default'),(1047,1947,'_titlebarAlign','field_59fa9ed623c88'),(1048,1947,'sidebarPosition','default'),(1049,1947,'_sidebarPosition','field_595f06285871e'),(1050,1947,'sidebar','default'),(1051,1947,'_sidebar','field_595f06905871f'),(1052,1947,'headerStyles','default'),(1053,1947,'_headerStyles','field_60daebf1237b6'),(1054,1947,'_elementor_edit_mode','builder'),(1055,1947,'_elementor_template_type','wp-page'),(1056,1947,'_elementor_version','3.4.0'),(1057,1947,'_elementor_data','[{\"id\":\"3b60814\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\"},\"elements\":[{\"id\":\"90235d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"133d4d7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage\",\"shortcode\":\"[rev_slider alias=\\\"home\\\" slidertitle=\\\"Homepage\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b234b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"fe526c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2706e54\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"12eca54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c38d03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ac7fe2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fc1e17f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7d5dcd5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"712f91e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f31882\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"036e3b0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"654f7b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d5d7b34\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae61499\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a3363b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d857a9a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36acca9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5547657\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e98ce51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"63e407b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f56be3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74b4f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bf41f06\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"d9371ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"47686f6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"2179c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"d681069\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c250e42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d128124\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3edacc5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"8ac8ccc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"3fd43b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"670139a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team of highly trained doctors\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"145f8c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c No matter what your concern, your first stop is one of our accessible, expert health professionals. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4e422e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7b4b51\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"e63bb2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1086b04\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e7d99c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5052934\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"ceeb48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please read through their profiles to learn more.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"76b951d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"41da73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get To Know Our Doctors\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5be9d62\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a5c928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\"},\"elements\":[{\"id\":\"b62412a\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"a75a933\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"c109474\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"a9af81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":300},\"elements\":[{\"id\":\"ff6087b\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"49ae246\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"209728b\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"d7c27ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":500},\"elements\":[{\"id\":\"95e10fd\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36893f3\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"95bae92\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fd2b3ab\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button white has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imgb1-13.jpeg\",\"id\":1769,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32a710b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5b42d52\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cf70cde\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"cb0636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"35119c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"864d9ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"67fa01a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e23a65f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1933708\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dfc0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f76ec98\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00d8c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"38b5801\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2c38144\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"317bd78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9fcd9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"dda69ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5b56dad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43ac132\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e08dffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"1ed6477\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4e92856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"03e748a\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"efdebd4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"24b9d19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"7d16f37\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"8c442c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.664,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7c5ec9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4b7e0bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"844fc3a\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dae002e\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Highlights:\",\"taxonomy\":\"category\",\"classes\":\"\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e690368\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de99fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e577458\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"animation\":\"none\"},\"elements\":[{\"id\":\"74a6af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d1dc560\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c5cfe3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a330503\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7171997\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d82eba1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9ce9166\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"afbb99d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6c40dcb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"40ffa83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a239ce0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61ceacb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"797deb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5aa8368\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"83fca94\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"12426d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"4d7cb9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are some helpful links to get you answers faster.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d2672f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"2d4b9b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bf9e968\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"34ebe14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"b2f7687\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EAE5ED\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"49785f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"ddc1404\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F4DDDD\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"86a04c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a3bbc5f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eac23\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a148c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4be19\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"1a9952e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"dd30121\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f633686\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"ea6af18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9072e11\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b1d0359\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed170b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21198dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c97f5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4c7ed34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"138c952\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ef04736\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2d0d5fa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca49481\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0022a33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"345847a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9371b2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0c14b96\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"e1eef5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"c6f32b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"35a2fb6\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"855b043\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"64b37d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"934224e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e6bfb62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ca6d374\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"877aba6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"03390ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c00e288\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1058,1947,'inline_featured_image','0'),(1059,1947,'_elementor_page_assets','a:0:{}'),(1061,1947,'slide_template','default'),(1062,1947,'rs_page_bg_color','#ffffff'),(1063,1947,'_elementor_controls_usage','a:18:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:55;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:55;s:21:\"space_between_widgets\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:7;s:11:\"hide_tablet\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:13;s:15:\"animation_delay\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:8:\"html_tag\";i:25;s:13:\"content_width\";i:29;s:3:\"gap\";i:5;s:18:\"gap_columns_custom\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:14;s:7:\"padding\";i:8;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:10;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:10;s:6:\"weight\";i:4;s:3:\"gap\";i:10;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:15;s:11:\"header_size\";i:12;s:4:\"link\";i:1;s:5:\"align\";i:4;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:6;s:22:\"typography_line_height\";i:6;s:11:\"title_color\";i:2;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:7;s:5:\"align\";i:5;s:4:\"link\";i:6;s:4:\"size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:12:\"_css_classes\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:13:\"border_radius\";i:2;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:4;s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:4;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:5;s:10:\"team_image\";i:5;s:10:\"team_title\";i:5;s:13:\"team_subtitle\";i:5;s:16:\"listItems_groups\";i:5;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:8;s:12:\"text_columns\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:2:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}s:19:\"wp-widget-tag_cloud\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}}'),(1065,1948,'_wp_page_template','default'),(1066,21,'inline_featured_image','0'),(1067,21,'title','My Cart'),(1068,21,'_title','field_595f05995871b'),(1069,21,'subtitle',''),(1070,21,'_subtitle','field_595f06045871c'),(1071,21,'titlebarLayout','default'),(1072,21,'_titlebarLayout','field_59fa9e15663bf'),(1073,21,'titlebarAlign','center'),(1074,21,'_titlebarAlign','field_59fa9ed623c88'),(1075,21,'sidebarPosition','default'),(1076,21,'_sidebarPosition','field_595f06285871e'),(1077,21,'sidebar','default'),(1078,21,'_sidebar','field_595f06905871f'),(1079,21,'headerStyles','style2'),(1080,21,'_headerStyles','field_60daebf1237b6'),(1081,21,'_wpassetcleanup_page_options','{\"no_css_minify\":1,\"no_css_optimize\":1,\"no_js_minify\":1,\"no_js_optimize\":1}'),(1082,22,'inline_featured_image','0'),(1083,22,'title',''),(1084,22,'_title','field_595f05995871b'),(1085,22,'subtitle',''),(1086,22,'_subtitle','field_595f06045871c'),(1087,22,'titlebarLayout','default'),(1088,22,'_titlebarLayout','field_59fa9e15663bf'),(1089,22,'titlebarAlign','center'),(1090,22,'_titlebarAlign','field_59fa9ed623c88'),(1091,22,'sidebarPosition','default'),(1092,22,'_sidebarPosition','field_595f06285871e'),(1093,22,'sidebar','default'),(1094,22,'_sidebar','field_595f06905871f'),(1095,22,'headerStyles','style2'),(1096,22,'_headerStyles','field_60daebf1237b6'),(1097,22,'_wpassetcleanup_page_options','{\"no_css_minify\":1,\"no_css_optimize\":1,\"no_js_minify\":1,\"no_js_optimize\":1}'),(1098,23,'inline_featured_image','0'),(1099,28,'inline_featured_image','0'),(1100,28,'inline_featured_image','0'),(1101,28,'title',''),(1102,28,'_title','field_595f05995871b'),(1103,28,'subtitle',''),(1104,28,'_subtitle','field_595f06045871c'),(1105,28,'titlebarLayout','none'),(1106,28,'_titlebarLayout','field_59fa9e15663bf'),(1107,28,'titlebarAlign','default'),(1108,28,'_titlebarAlign','field_59fa9ed623c88'),(1109,28,'sidebarPosition','default'),(1110,28,'_sidebarPosition','field_595f06285871e'),(1111,28,'sidebar','default'),(1112,28,'_sidebar','field_595f06905871f'),(1113,28,'headerStyles','default'),(1114,28,'_headerStyles','field_60daebf1237b6'),(1115,28,'_wp_page_template','default'),(1116,28,'_elementor_edit_mode','builder'),(1117,28,'_elementor_template_type','wp-page'),(1118,28,'_elementor_version','3.6.5'),(1119,28,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8d361c8\"}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the Vijaya Dental Care?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the Vijaya?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1120,28,'_elementor_page_assets','a:0:{}'),(1122,28,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(1124,170,'inline_featured_image','0'),(1125,170,'title','Clilab Blog - Latest Medical News, Clinical Trials, Guidelines'),(1126,170,'_title','field_595f05995871b'),(1127,170,'subtitle',''),(1128,170,'_subtitle','field_595f06045871c'),(1129,170,'titlebarLayout','default'),(1130,170,'_titlebarLayout','field_59fa9e15663bf'),(1131,170,'titlebarAlign','default'),(1132,170,'_titlebarAlign','field_59fa9ed623c88'),(1133,170,'sidebarPosition','default'),(1134,170,'_sidebarPosition','field_595f06285871e'),(1135,170,'sidebar','default'),(1136,170,'_sidebar','field_595f06905871f'),(1137,170,'headerStyles','default'),(1138,170,'_headerStyles','field_60daebf1237b6'),(1139,206,'inline_featured_image','0'),(1140,206,'title','We Welcome Your Questions And Feedback.'),(1141,206,'_title','field_595f05995871b'),(1142,206,'subtitle','Let us Know How We can Help You'),(1143,206,'_subtitle','field_595f06045871c'),(1144,206,'titlebarLayout','default'),(1145,206,'_titlebarLayout','field_59fa9e15663bf'),(1146,206,'titlebarAlign','center'),(1147,206,'_titlebarAlign','field_59fa9ed623c88'),(1148,206,'sidebarPosition','default'),(1149,206,'_sidebarPosition','field_595f06285871e'),(1150,206,'sidebar','default'),(1151,206,'_sidebar','field_595f06905871f'),(1152,206,'headerStyles','style2'),(1153,206,'_headerStyles','field_60daebf1237b6'),(1154,206,'_wp_page_template','tmpl/template-fullwidth.php'),(1155,206,'_elementor_edit_mode','builder'),(1156,206,'_elementor_template_type','wp-page'),(1157,206,'_elementor_version','3.4.0'),(1158,206,'_elementor_data','[{\"id\":\"f5c8c24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"f07671f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e06a05b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"d593b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7cb4615\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ef00595\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"739c5d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c7507d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are some helpful links to get you answers faster.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"32a1695\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"87e6fe6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"76d5b4e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"1a60af3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"b7b6d59\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EAE5ED\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5fc7b46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"caff2c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F4DDDD\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7553a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a3d0e18\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98f816f\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769532d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2c1217\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9686ea5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":10},\"elements\":[{\"id\":\"5288228\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pin-3-1.svg\",\"id\":1833},\"library\":\"svg\"},\"view\":\"stacked\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"primary_color\":\"#2A2A2A\",\"_animation\":\"bounce\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"830215e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"animation\":\"none\"},\"elements\":[{\"id\":\"b10eca0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Information\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a6c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>How to Find us<\\/strong><\\/p><p>CiLab Medical Clinic is located at: 2307 Beverley Rd Brooklyn, New York 11226 United States.<\\/p>\",\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0b1052\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d5225a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Access to Parking<\\/strong><\\/p><p>The CiLab Medical Clinic car park has been relocated to the north of the building.<\\/p>\",\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3ae70\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4f89656\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Opening Hours<\\/strong><\\/p><p>Open 7 days 8:0AM to 8:00PM. Public Holidays 9:00AM to 5:00PM.<\\/p>\",\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e73617\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e599fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bb1b32a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"d4497a1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"9e04ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bcb1ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send a Message!\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2d7a5e\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"http:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/07\\/face.png\",\"id\":913,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to \\ntelephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"},{\"id\":\"d925017\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"17\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true},{\"id\":\"03771a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"c969a5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/glb.jpg\",\"id\":1834,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1159,206,'inline_featured_image','0'),(1160,206,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1162,206,'_elementor_controls_usage','a:12:{s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:1;s:3:\"gap\";i:4;s:5:\"color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:2;s:11:\"hide_tablet\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:2;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:6;s:8:\"html_tag\";i:3;s:3:\"gap\";i:1;s:18:\"gap_columns_custom\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}s:26:\"section_background_overlay\";a:9:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:5:\"align\";i:1;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:1;s:4:\"view\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:3:{s:6:\"editor\";i:3;s:12:\"text_columns\";i:3;s:10:\"column_gap\";i:3;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}}}}'),(1164,351,'inline_featured_image','0'),(1165,351,'inline_featured_image','0'),(1166,351,'_wp_page_template','tmpl/template-fullwidth.php'),(1167,351,'title',''),(1168,351,'_title','field_595f05995871b'),(1169,351,'subtitle',''),(1170,351,'_subtitle','field_595f06045871c'),(1171,351,'titlebarLayout','none'),(1172,351,'_titlebarLayout','field_59fa9e15663bf'),(1173,351,'titlebarAlign','default'),(1174,351,'_titlebarAlign','field_59fa9ed623c88'),(1175,351,'sidebarPosition','default'),(1176,351,'_sidebarPosition','field_595f06285871e'),(1177,351,'sidebar','default'),(1178,351,'_sidebar','field_595f06905871f'),(1179,351,'headerStyles','style2'),(1180,351,'_headerStyles','field_60daebf1237b6'),(1181,351,'_elementor_edit_mode','builder'),(1182,351,'_elementor_template_type','wp-page'),(1183,351,'_elementor_version','3.4.0'),(1184,351,'_elementor_data','[{\"id\":\"2bf19f2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg_ab-scaled-1.jpg\",\"id\":1873,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_b\":\"#029967\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size_mobile\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"height\":\"full\",\"column_position\":\"stretch\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"html_tag\":\"div\"},\"elements\":[{\"id\":\"d80ae30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0c9f402\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"overview\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"a26d7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab<br>The <strong>Best<\\/strong> Medical <strong>experts<\\/strong> and<br><strong>qualified<\\/strong> staff\",\"size\":\"xxl\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.33,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95ce37f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"animation\":\"none\",\"animation_delay\":150},\"elements\":[{\"id\":\"2446c42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"6157a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":30},\"elements\":[{\"id\":\"f70fef6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Clilab Medical Clinics in US, operate in 3 cities: New York, Los Angeles and San Francisco. These fully-licensed clinics are staffed by well trained and specialised professionals to ensure quality, comprehensive medical care. With over 40 years of experience in providing healthcare service in US, CliLab offers a one stop service for your medical needs.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8b623b4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/circle-arrow-down.svg\",\"id\":1773},\"library\":\"svg\"},\"_animation\":\"none\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"661fb2d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"d58931b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"5ff0c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"119c5d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"a8ac56c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":68,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"dd5e333\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"db23152\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.333,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8061102\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce70a60\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b630bf4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8044842\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e8b667a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"e52d246\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"35dc547\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"e9007e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"668e936\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85dfcda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d66a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"21039a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d15218\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"fact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b0e0356\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"221e561\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"8f35215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"b7c5db0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a8f7060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"9a32d17\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2435ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"e626346\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"4a9b2e4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"f14e574\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"7db58d4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"222d555\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"3b7482b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.6,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"b691f8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"3c5e205\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d923e29\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"bc9b025\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"563d67f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"026618d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f5bf5f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5cbe8d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66550bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4916f0d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"value\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"e95b5bd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"6cff6b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"57cd337\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"80d4480\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"4fbfcf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Core Value\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77bcc99\",\"elType\":\"widget\",\"settings\":{\"title\":\"We seek always to create <br>\\n& deliver value for you.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b9fbd6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our mission<\\/strong><\\/p><p>Our mission is to enhence health and well-being by providing the best total healthcare.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"90aa904\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5c192ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Vision<\\/strong><\\/p><p>Trusted partner for health. A healthy community with quality, affordable healthcare for all.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"226925e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8b8ce65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Policy<\\/strong><\\/p><p>We practise high standards through an effective quality management system to assure that our services meet.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f520fa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a91d509\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c5676b\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"d3b2c68\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5fccb21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c98d079\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose CliLab Medical Clinic\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1665936\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many reasons to choose CliLab as your healthcare provider of choice.<br \\/>Choose from one of the options below to find out more:<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77211c8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Integrity and Ethics\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"87f6bf4\"},{\"text\":\"Commitment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/sports-fan.svg\",\"id\":1783},\"library\":\"svg\"},\"_id\":\"e3d2fa6\"},{\"text\":\"Excellence and Awards\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/military-medal.svg\",\"id\":1782},\"library\":\"svg\"},\"_id\":\"3ecc6cb\"},{\"text\":\"Fiscal Soundness\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/c-pulse.svg\",\"id\":1771},\"library\":\"svg\"},\"_id\":\"f6b9f74\"},{\"text\":\"Cultural Competence\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/diamond.svg\",\"id\":1774},\"library\":\"svg\"},\"_id\":\"fd54092\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4d1bea\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b52c6b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6e56a85\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"7f069d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5754e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"515e69b\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"11e8a47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team of highly trained doctors\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26a442c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c We are Proud to have a Team of Dedicated Doctors with varying interests and background \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"707f1a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e406556\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"1a8ef51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35d6199\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"479b44d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"a15de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e7e2de0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please read through their profiles to learn more.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"70a3726\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"45d21ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get To Know Our Doctors\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49ddf2f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4fa2be8\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\"},\"elements\":[{\"id\":\"252f9c4\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"c3bac55\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"b60568a\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"5670ea4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"df02a27\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"fb45d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":600},\"elements\":[{\"id\":\"6702768\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"ebbaf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":800},\"elements\":[{\"id\":\"539d574\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6f96c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cba475a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\"},\"elements\":[{\"id\":\"8b45da5\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"fccae97\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"f393ff0\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"8994070\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"81912df\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"ac86834\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":600},\"elements\":[{\"id\":\"6d2dea8\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"9a028ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":800},\"elements\":[{\"id\":\"cd317a7\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf8642\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"01d819a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48af79c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button white has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imgb1-13.jpeg\",\"id\":1769,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b474a54\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b9d4f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fff54a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"award\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"e9a81c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f78ab36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"08e221c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99c2af8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"4f6f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77ee933\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"1ad48bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38c5f2a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0174b4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6d44bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"56b9787\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1767005\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"5fa5963\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c308bf9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f06995\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"76014dc\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"793d729\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1884e80\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"fd89ae4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0d0bed2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"faq\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f71a33\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8730f02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"88ce9f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cb4e57a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a21f5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question \\u2013 Scroll through the list of frequently asked questions but if you don\\u2019t find your answer, feel free to give us a call or drop us a note. Find out More\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a9015e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1324962\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"147b947\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I have to re-register if I have services at multiple locations?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"2e36f73\"},{\"tab_title\":\"What information will the Patient Services Representative need to schedule an appointment?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"0601de7\"},{\"tab_title\":\"Will you bill my insurance?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"66698d4\"},{\"tab_title\":\"What if I can\'t make my appointment and I need to reschedule?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"c45a01f\"},{\"tab_title\":\"If I call with a question for the nurse or doctor, when can I expect a call back?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"fc77832\"},{\"tab_title\":\"How do I get my blood pressure checked?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"de651bc\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1185,351,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1187,351,'_elementor_controls_usage','a:16:{s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:7;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:16;s:4:\"size\";i:4;s:5:\"align\";i:9;s:11:\"header_size\";i:13;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:8;s:11:\"title_color\";i:5;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:52;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:52;s:21:\"space_between_widgets\";i:4;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:6;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:12;s:15:\"animation_delay\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:6;s:12:\"text_columns\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:5:\"align\";i:2;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:13:\"content_width\";i:27;s:8:\"html_tag\";i:22;s:6:\"height\";i:1;s:15:\"column_position\";i:1;s:16:\"content_position\";i:1;s:3:\"gap\";i:2;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:15:\"animation_delay\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:11;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_color_stop\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:2;s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:8;s:6:\"weight\";i:3;s:3:\"gap\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:10;s:10:\"team_image\";i:10;s:10:\"team_title\";i:10;s:13:\"team_subtitle\";i:10;s:16:\"listItems_groups\";i:10;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:5:\"image\";i:1;s:4:\"link\";i:1;s:8:\"position\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:31:\"title_typography_text_transform\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:34:\"description_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:7:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:10:\"navigation\";i:1;s:12:\"caption_type\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:2:{s:15:\"blog_pagination\";i:1;s:13:\"read_more_txt\";i:1;}}}}s:6:\"toggle\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_toggle\";a:1:{s:4:\"tabs\";i:1;}}}}}'),(1189,859,'inline_featured_image','0'),(1190,859,'inline_featured_image','0'),(1191,859,'_wp_page_template','tmpl/template-fullwidth.php'),(1192,859,'title',''),(1193,859,'_title','field_595f05995871b'),(1194,859,'subtitle',''),(1195,859,'_subtitle','field_595f06045871c'),(1196,859,'titlebarLayout','none'),(1197,859,'_titlebarLayout','field_59fa9e15663bf'),(1198,859,'titlebarAlign','default'),(1199,859,'_titlebarAlign','field_59fa9ed623c88'),(1200,859,'sidebarPosition','default'),(1201,859,'_sidebarPosition','field_595f06285871e'),(1202,859,'sidebar','default'),(1203,859,'_sidebar','field_595f06905871f'),(1204,859,'headerStyles','default'),(1205,859,'_headerStyles','field_60daebf1237b6'),(1206,859,'_elementor_edit_mode','builder'),(1207,859,'_elementor_template_type','wp-page'),(1208,859,'_elementor_version','3.4.0'),(1209,859,'_elementor_data','[{\"id\":\"415baa5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/revslider\\/home\\/slider02.jpg\",\"id\":1736,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_b\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f9733ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b60d2b9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"75ff248\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":99},\"elements\":[{\"id\":\"148d762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services and Programs\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a4f1c2\",\"elType\":\"widget\",\"settings\":{\"before_title\":\"The Service Clilab Provide:\",\"animation_groups\":[{\"animation_text\":\"Vaccinations\",\"_id\":\"43667a7\"},{\"animation_text\":\"Emergency\",\"_id\":\"f000369\"},{\"animation_text\":\"Medicine\",\"_id\":\"01eb036\"},{\"animation_text\":\"and More\",\"_id\":\"f535720\"}],\"cursorChar\":\"|\",\"after_title\":\"\",\"content_alignment\":\"left\",\"sasban_title_typography_typography\":\"custom\",\"sasban_title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"sasban_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"sasban_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_typewriter\"},{\"id\":\"773aab9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview Clilab\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a5e0a60\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Our Doctors\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4dff333\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Book an Appointment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1cb8b9e\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"777f056\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ac664a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d85b334\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f11a60a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d37da9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"445430c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"74d4fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6ec0d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b756cb5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9cb8c88\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"e1f2db9\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_background_background\":\"classic\",\"_background_color\":\"#0C608A\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"6b65ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":150},\"elements\":[{\"id\":\"01d9f91\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_background_background\":\"classic\",\"_background_color\":\"#00BF54\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"75798c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":300},\"elements\":[{\"id\":\"5ac6805\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_background_background\":\"classic\",\"_background_color\":\"#02AFEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a335a0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc839d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1537f30\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a93016e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c80e1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f1de71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24b48b7\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"19339ab\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c4fe1b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"a6d13eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f750d0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7185fc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"1e2d933\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"406a045\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"a3af0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c1eb4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"ff0c483\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9484105\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aef73d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"368cd81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8fc6ae3\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"879a6ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"0927f80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c0f167d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7d281b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3372511\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"156680b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"a4b8250\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0faae2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"c702238\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"be1b59b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"260b408\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61bdc38\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1210,859,'_elementor_page_assets','a:0:{}'),(1212,859,'_elementor_controls_usage','a:12:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:5;s:11:\"header_size\";i:4;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;}}}}s:26:\"namedical_basic_typewriter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_typewriter\";a:4:{s:12:\"before_title\";i:1;s:16:\"animation_groups\";i:1;s:11:\"after_title\";i:1;s:17:\"content_alignment\";i:1;}}s:5:\"style\";a:1:{s:24:\"section_anim_title_style\";a:3:{s:34:\"sasban_title_typography_typography\";i:1;s:33:\"sasban_title_typography_font_size\";i:1;s:35:\"sasban_title_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:4:\"view\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:22;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:15:\"animation_delay\";i:4;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:13;s:8:\"html_tag\";i:9;s:3:\"gap\";i:2;s:18:\"gap_columns_custom\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:7;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:1;s:12:\"text_columns\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:5:\"image\";i:1;s:4:\"link\";i:1;s:8:\"position\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:31:\"title_typography_text_transform\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:34:\"description_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}'),(1214,1015,'inline_featured_image','0'),(1215,1015,'inline_featured_image','0'),(1216,1015,'title','Name: Healthcare Services'),(1217,1015,'_title','field_595f05995871b'),(1218,1015,'subtitle','We are here to serve you when you need us most.'),(1219,1015,'_subtitle','field_595f06045871c'),(1220,1015,'titlebarLayout','default'),(1221,1015,'_titlebarLayout','field_59fa9e15663bf'),(1222,1015,'titlebarAlign','center'),(1223,1015,'_titlebarAlign','field_59fa9ed623c88'),(1224,1015,'sidebarPosition','default'),(1225,1015,'_sidebarPosition','field_595f06285871e'),(1226,1015,'sidebar','default'),(1227,1015,'_sidebar','field_595f06905871f'),(1228,1015,'headerStyles','default'),(1229,1015,'_headerStyles','field_60daebf1237b6'),(1230,1015,'_thumbnail_id','1739'),(1231,1015,'_elementor_edit_mode','builder'),(1232,1015,'_elementor_template_type','wp-page'),(1233,1015,'_elementor_version','3.4.0'),(1234,1015,'_wp_page_template','tmpl/template-fullwidth.php'),(1235,1015,'_elementor_data','[{\"id\":\"6ad0452\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"html_tag\":\"div\",\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[{\"id\":\"c4a93d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06069d5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1360,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"6020ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.957,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7a3507\",\"elType\":\"widget\",\"settings\":{\"compare_style\":\"horizontal\",\"before_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-1-4-12.jpeg\",\"id\":1891,\"alt\":\"\",\"source\":\"library\"},\"after_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-1-12.jpeg\",\"id\":1892,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"namedical_basic_image_compare\"}],\"isInner\":true},{\"id\":\"9b460ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"space_between_widgets\":60,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1a32e5c\",\"elType\":\"widget\",\"settings\":{\"apps_title\":\" Register Online Before You Arrive.\",\"apps_subtitle\":\"Skip The Waiting Room!\",\"apps_content\":\"We have up to date schedules, contact information, & let you book appointments online.\",\"listItems_groups\":[{\"_id\":\"dd3f74c\",\"btn_text\":\"Book an Appointment\",\"btn_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":\"\"},{\"_id\":\"5f686c4\",\"btn_text\":\"Request a Call Back\",\"btn_link\":{\"url\":\"#request\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_style\":\"three\",\"btn_icon\":\"\"}]},\"elements\":[],\"widgetType\":\"namedical_basic_get_apps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a9d918\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c58763\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"164bf24\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"89657d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>What is Lorem Ipsum?<\\/h2><p><strong>Lorem Ipsum<\\/strong>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p><\\/div><div><h2>Why do we use it?<\\/h2><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p><\\/div><p>\\u00a0<\\/p><div><h2>Where does it come from?<\\/h2><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p><\\/div>\",\"text_columns\":\"1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cda0624\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I have to re-register if I have services at multiple locations?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"7287a1a\"},{\"tab_title\":\"What information will the Patient Services Representative need to schedule an appointment?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"f40c409\"},{\"tab_title\":\"Will you bill my insurance?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"bce7b54\"},{\"tab_title\":\"What if I can\'t make my appointment and I need to reschedule?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"087cc36\"},{\"tab_title\":\"How do I get my blood pressure checked?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"d76f6ae\"}]},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"90ec05f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5da32dd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[{\"id\":\"c827122\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"60f06f1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"9499fe8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b848d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e89c182\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"dbbb4cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"0f7c267\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are industry experts who can help you\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7878dd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"131d42c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get To Know Our Doctors\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#team\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7d3cd42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"8596bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"0fbe83e\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"dfd16aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"97a77a8\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"88497f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"edd7e3e\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"5402546\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"b296ec1\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"0f2defd\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6868c5a\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patelr, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cda8058\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"request\"},\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fadb6c9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"html_tag\":\"div\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/07\\/bg2.jpg\",\"id\":1320,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"repeat-x\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[{\"id\":\"90cf315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ec0ee9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#03DD84\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(41.99999999999999, 41.99999999999999, 41.99999999999999, 0.12)\"}},\"elements\":[{\"id\":\"c0cc543\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"d47798d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f75a09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"762fa7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09e52c4\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"ccff636\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"4b514f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"95d71c2\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1236,1015,'_elementor_page_assets','a:0:{}'),(1238,1015,'_elementor_controls_usage','a:13:{s:29:\"namedical_basic_image_compare\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:3:{s:13:\"compare_style\";i:1;s:12:\"before_image\";i:1;s:11:\"after_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:19;s:21:\"space_between_widgets\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:24:\"namedical_basic_get_apps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_apps\";a:4:{s:10:\"apps_title\";i:1;s:13:\"apps_subtitle\";i:1;s:12:\"apps_content\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:8;s:3:\"gap\";i:2;s:18:\"gap_columns_custom\";i:2;s:8:\"html_tag\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:19:\"background_bg_width\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:2;s:12:\"text_columns\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:9:\"accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"tabs\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:5;s:10:\"team_image\";i:5;s:10:\"team_title\";i:5;s:13:\"team_subtitle\";i:5;s:16:\"listItems_groups\";i:5;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}}'),(1239,1015,'slide_template','default'),(1240,1015,'rs_page_bg_color','#ffffff'),(1242,1078,'inline_featured_image','0'),(1243,1078,'inline_featured_image','0'),(1244,1078,'_wp_page_template','tmpl/template-fullwidth.php'),(1245,1078,'title',''),(1246,1078,'_title','field_595f05995871b'),(1247,1078,'subtitle',''),(1248,1078,'_subtitle','field_595f06045871c'),(1249,1078,'titlebarLayout','none'),(1250,1078,'_titlebarLayout','field_59fa9e15663bf'),(1251,1078,'titlebarAlign','default'),(1252,1078,'_titlebarAlign','field_59fa9ed623c88'),(1253,1078,'sidebarPosition','default'),(1254,1078,'_sidebarPosition','field_595f06285871e'),(1255,1078,'sidebar','default'),(1256,1078,'_sidebar','field_595f06905871f'),(1257,1078,'headerStyles','default'),(1258,1078,'_headerStyles','field_60daebf1237b6'),(1259,1078,'_elementor_edit_mode','builder'),(1260,1078,'_elementor_template_type','wp-page'),(1261,1078,'_elementor_version','3.4.0'),(1262,1078,'_elementor_data','[{\"id\":\"f5d2904\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"html_tag\":\"div\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_b\":\"#D4F7E8\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2A2A2A1A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"px\",\"size\":-372,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"085\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f4f4ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"494d86f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Register Online Before You Arrive.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"885b02a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Look Forward to Welcoming You to the Clinic\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36d9d80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our complete current fees guide is on display in the reception area.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da93c14\",\"elType\":\"widget\",\"settings\":{\"process_groups\":[{\"process_title\":\"Step 1\",\"_id\":\"03506f4\",\"step_title\":\"Step 01\",\"process_content\":\"Registration and Book your Appointment.\",\"process_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/mouse.svg\",\"id\":1900,\"alt\":\"\",\"source\":\"library\"}},{\"process_title\":\"Step 2\",\"step_title\":\"Step 01\",\"process_content\":\"Determines the appropriate time for you to leave\",\"_id\":\"3577fc3\",\"process_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/walk.svg\",\"id\":1788,\"alt\":\"\",\"source\":\"library\"}},{\"process_title\":\"Step 3\",\"step_title\":\"Step 01\",\"process_content\":\"See your doctor as soon as you arrive.\",\"_id\":\"139997b\",\"process_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/verified.svg\",\"id\":1786,\"alt\":\"\",\"source\":\"library\"}}],\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"namedical_basic_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32ed220\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"background_color_b\":\"\"},\"elements\":[{\"id\":\"6a0c105\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c74ae11\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"bb972d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ac302fa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a28043e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6fb4ffd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8889768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Doctor Consultation Fee may varies between clinics.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0d28edd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"86345c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a5e847\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"dd346e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78e5384\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"layout_cols\":\"2\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"namedical_ea_appointment\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1263,1078,'_elementor_page_assets','a:0:{}'),(1265,1078,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:5:\"align\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"namedical_basic_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_process\";a:1:{s:14:\"process_groups\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:5;s:8:\"html_tag\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:15:\"background_xpos\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:24:\"namedical_ea_appointment\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_appointment\";a:2:{s:5:\"width\";i:1;s:11:\"layout_cols\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}'),(1267,1266,'inline_featured_image','0'),(1268,1266,'inline_featured_image','0'),(1269,1266,'_wp_page_template','tmpl/template-fullwidth.php'),(1270,1266,'title',''),(1271,1266,'_title','field_595f05995871b'),(1272,1266,'subtitle',''),(1273,1266,'_subtitle','field_595f06045871c'),(1274,1266,'titlebarLayout','none'),(1275,1266,'_titlebarLayout','field_59fa9e15663bf'),(1276,1266,'titlebarAlign','default'),(1277,1266,'_titlebarAlign','field_59fa9ed623c88'),(1278,1266,'sidebarPosition','default'),(1279,1266,'_sidebarPosition','field_595f06285871e'),(1280,1266,'sidebar','default'),(1281,1266,'_sidebar','field_595f06905871f'),(1282,1266,'headerStyles','default'),(1283,1266,'_headerStyles','field_60daebf1237b6'),(1284,1266,'_elementor_edit_mode','builder'),(1285,1266,'_elementor_template_type','wp-page'),(1286,1266,'_elementor_version','3.4.0'),(1287,1266,'_elementor_data','[{\"id\":\"e4f8289\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/revslider\\/home\\/slider01.jpg\",\"id\":1737,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#D4F7E800\",\"background_overlay_color_b\":\"#D4F7E8\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"969771e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f4c4610\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"f24ce49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"fd19933\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.333,\"space_between_widgets\":0,\"_inline_size_tablet\":99},\"elements\":[{\"id\":\"d16d8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Price List\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1af949a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Look Forward to Welcoming You to the Clinic\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1489c7c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our complete current fees guide is on display in the reception area.<\\/p><p><br \\/><a class=\\\"button has-icon\\\" href=\\\"#\\\"><i class=\\\"iconlab iconlab-download-file\\\"><\\/i>Download Price List (PDF)<\\/a><\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4e0a6fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a7df27\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color_b\":\"#FFFFFF\",\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#D4F7E8\",\"gap\":\"custom\"},\"elements\":[{\"id\":\"8912397\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d30c552\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"873d2dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"87e351a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2077c4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"92ebb86\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"0edace5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Doctor Consultation Fee may varies between clinics.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3944154\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"587980d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cf62bb0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"866f194\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"55052f7\",\"elType\":\"widget\",\"settings\":{\"pricing_style\":\"two\",\"price_label\":\"Popular\",\"price_title\":\"Dental Prices\",\"currency\":\"$\",\"price\":\"80\",\"duration\":\"\\/mo\",\"listItems_groups\":[],\"priceItems_groups\":[{\"_id\":\"df276c2\",\"list_text\":\"Examination\",\"text_price\":\"$250\"},{\"_id\":\"d59844b\",\"list_text\":\"Examination Plus Scale & Polish\",\"text_price\":\"from $150\"},{\"_id\":\"0506141\",\"list_text\":\"New Patient Consultation\",\"text_price\":\"30min $250\"},{\"_id\":\"bc4a7ad\",\"list_text\":\"Hygienist\",\"text_price\":\"$44.50\"},{\"_id\":\"27ad153\",\"list_text\":\"Fillings\",\"text_price\":\"$70 - $250\"},{\"list_text\":\"Root Canal\",\"text_price\":\"$300 - $450\",\"_id\":\"dadfa08\"},{\"list_text\":\"Crowns & Veneers\",\"text_price\":\"$500 - $750\",\"_id\":\"1f42bbf\"},{\"list_text\":\"Re-Cement Crown\",\"text_price\":\"$800 - $1150\",\"_id\":\"a0e2d8c\"}],\"btn_text\":\"Need Help?\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"namedical_unique_pricing\"}],\"isInner\":true},{\"id\":\"2f510e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"bce4000\",\"elType\":\"widget\",\"settings\":{\"pricing_style\":\"two\",\"price_label\":\"Popular\",\"price_title\":\"Dental Prices\",\"currency\":\"$\",\"price\":\"80\",\"duration\":\"\\/mo\",\"listItems_groups\":[],\"priceItems_groups\":[{\"_id\":\"df276c2\",\"list_text\":\"Examination\",\"text_price\":\"$250\"},{\"_id\":\"d59844b\",\"list_text\":\"Examination Plus Scale & Polish\",\"text_price\":\"from $150\"},{\"_id\":\"0506141\",\"list_text\":\"New Patient Consultation\",\"text_price\":\"30min $250\"},{\"_id\":\"bc4a7ad\",\"list_text\":\"Hygienist\",\"text_price\":\"$44.50\"},{\"_id\":\"27ad153\",\"list_text\":\"Fillings\",\"text_price\":\"$70 - $250\"},{\"list_text\":\"Root Canal\",\"text_price\":\"$300 - $450\",\"_id\":\"dadfa08\"},{\"list_text\":\"Crowns & Veneers\",\"text_price\":\"$500 - $750\",\"_id\":\"1f42bbf\"},{\"list_text\":\"Re-Cement Crown\",\"text_price\":\"$800 - $1150\",\"_id\":\"a0e2d8c\"}],\"btn_text\":\"Need Help?\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"namedical_unique_pricing\"}],\"isInner\":true},{\"id\":\"9e4dd3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b8ac705\",\"elType\":\"widget\",\"settings\":{\"pricing_style\":\"two\",\"price_label\":\"Popular\",\"price_title\":\"Dental Prices\",\"currency\":\"$\",\"price\":\"80\",\"duration\":\"\\/mo\",\"listItems_groups\":[],\"priceItems_groups\":[{\"_id\":\"df276c2\",\"list_text\":\"Examination\",\"text_price\":\"$250\"},{\"_id\":\"d59844b\",\"list_text\":\"Examination Plus Scale & Polish\",\"text_price\":\"from $150\"},{\"_id\":\"0506141\",\"list_text\":\"New Patient Consultation\",\"text_price\":\"30min $250\"},{\"_id\":\"bc4a7ad\",\"list_text\":\"Hygienist\",\"text_price\":\"$44.50\"},{\"_id\":\"27ad153\",\"list_text\":\"Fillings\",\"text_price\":\"$70 - $250\"},{\"list_text\":\"Root Canal\",\"text_price\":\"$300 - $450\",\"_id\":\"dadfa08\"},{\"list_text\":\"Crowns & Veneers\",\"text_price\":\"$500 - $750\",\"_id\":\"1f42bbf\"},{\"list_text\":\"Re-Cement Crown\",\"text_price\":\"$800 - $1150\",\"_id\":\"a0e2d8c\"}],\"btn_text\":\"Need Help?\",\"btn_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"namedical_unique_pricing\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"96fbb68\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"858e17b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5b6a6c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0106834\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1658eee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1435276\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e9b0f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"19ec3e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"47cc62c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"c30dd53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question \\u2013 Scroll through the list of frequently asked questions but if you don\\u2019t find your answer, feel free to give us a call or drop us a note. Find out More\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ca0c37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"4242057\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dbb1f94\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I have to re-register if I have services at multiple locations?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"2e36f73\"},{\"tab_title\":\"What information will the Patient Services Representative need to schedule an appointment?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"0601de7\"},{\"tab_title\":\"Will you bill my insurance?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"66698d4\"},{\"tab_title\":\"What if I can\'t make my appointment and I need to reschedule?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"c45a01f\"},{\"tab_title\":\"If I call with a question for the nurse or doctor, when can I expect a call back?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"fc77832\"},{\"tab_title\":\"How do I get my blood pressure checked?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"de651bc\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1288,1266,'_elementor_page_assets','a:0:{}'),(1289,1266,'_elementor_controls_usage','a:8:{s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:16;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:5;s:11:\"header_size\";i:3;s:5:\"align\";i:2;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:10;s:8:\"html_tag\";i:8;s:18:\"gap_columns_custom\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:2;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:6;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:2;s:6:\"weight\";i:1;s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:24:\"namedical_unique_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_pricing\";a:5:{s:13:\"pricing_style\";i:3;s:11:\"price_title\";i:3;s:17:\"priceItems_groups\";i:3;s:8:\"btn_text\";i:3;s:8:\"btn_link\";i:3;}}}}s:6:\"toggle\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_toggle\";a:1:{s:4:\"tabs\";i:1;}}}}}'),(1290,1293,'inline_featured_image','0'),(1291,1293,'inline_featured_image','0'),(1292,1293,'_wp_page_template','tmpl/template-fullwidth.php'),(1293,1293,'title','A Short History of the CliLab Health Services'),(1294,1293,'_title','field_595f05995871b'),(1295,1293,'subtitle','Our development since 1988'),(1296,1293,'_subtitle','field_595f06045871c'),(1297,1293,'titlebarLayout','default'),(1298,1293,'_titlebarLayout','field_59fa9e15663bf'),(1299,1293,'titlebarAlign','center'),(1300,1293,'_titlebarAlign','field_59fa9ed623c88'),(1301,1293,'sidebarPosition','default'),(1302,1293,'_sidebarPosition','field_595f06285871e'),(1303,1293,'sidebar','default'),(1304,1293,'_sidebar','field_595f06905871f'),(1305,1293,'headerStyles','default'),(1306,1293,'_headerStyles','field_60daebf1237b6'),(1307,1293,'_elementor_edit_mode','builder'),(1308,1293,'_elementor_template_type','wp-page'),(1309,1293,'_elementor_version','3.4.0'),(1310,1293,'_elementor_data','[{\"id\":\"9082cde\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color_b\":\"\",\"html_tag\":\"div\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg2.jpg\",\"id\":1877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_b\":\"#D4F7E8\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"c26306f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3a842cd\",\"elType\":\"widget\",\"settings\":{\"historyItem_groups\":[{\"history_title\":\"NHE Increases & COBRA\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/military-medal.svg\",\"id\":1782,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"The 1980\\u2019s\",\"history_content\":\"By 1980, NHE accounted for 8.9 percent of GDP, an even larger leap than the decade prior. Under the Reagan Administration (1981-1989), regulations loosened across the board, and privatization of healthcare became increasingly common.\",\"history_more\":\"Read More\",\"_id\":\"e9799db\"},{\"history_title\":\"HIPAA & Medicaid Expansion\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/diamond.svg\",\"id\":1774,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"The 1990\\u2019s\",\"history_content\":\"By 1990, NHE accounted for 12.1 percent of GDP \\u2014 the largest increase thus far in the history of healthcare. Like others before him, the 42nd President of the United States, Bill Clinton (1993-2001), saw that this rapid increase in healthcare expenses would be damaging to the average American and attempted to take action.\",\"history_more\":\"Read More\",\"_id\":\"cb3cea2\"},{\"history_title\":\"Extending Coverage\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/sports-fan.svg\",\"id\":1783,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"The Early 2000\\u2019s\",\"history_content\":\"The history of healthcare slowed down at that point, as the national healthcare debate was tabled while the U.S. focused on the increased threat of terrorism and the second Iraq War. It wasn\\u2019t until election campaign mumblings began in 2006 and 2007 that insurance worked its way back into the national discussion.\",\"history_more\":\"Read More\",\"_id\":\"90e2a83\"},{\"history_title\":\"The Affordable Care Act\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"2008 to 2016\",\"history_content\":\"When Barack Obama (2009-2017) was elected the 44th President of the United States in 2008, he wasted no time getting to work on healthcare reform. He worked closely with Senator Ted Kennedy to create a new healthcare law that mirrored the one Kennedy and Nixon worked on in the \'70s.\",\"history_more\":\"Read More\",\"_id\":\"7799428\"},{\"history_title\":\" The Trump Presidency \",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"2017\",\"history_content\":\"Since Donald Trump was sworn in as the 45th President of the United States on January 20, 2017, many have questioned what would happen with our healthcare system \\u2014 specifically, what would happen to the ACA, since Donald Trump ran on a platform of \\u201crepealing and replacing\\u201d the bill.\",\"history_more\":\"Read More\",\"_id\":\"ad3a89c\"},{\"history_title\":\"The Future of Healthcare\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"Present\",\"history_content\":\"Hungry to notch a win on healthcare prior to the 2020 election, the Trump administration continues to push ahead on initiatives designed to reign-in healthcare costs. \",\"history_more\":\"Read More\",\"_id\":\"4088545\"}]},\"elements\":[],\"widgetType\":\"namedical_basic_history\"}],\"isInner\":false}],\"isInner\":false}]'),(1311,1293,'_elementor_page_assets','a:0:{}'),(1313,1293,'_elementor_controls_usage','a:3:{s:23:\"namedical_basic_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_history\";a:1:{s:18:\"historyItem_groups\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:18:\"background_color_b\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:8:\"html_tag\";i:1;}}}}}'),(1315,1301,'inline_featured_image','0'),(1316,1301,'inline_featured_image','0'),(1317,1301,'_wp_page_template','tmpl/template-fullwidth.php'),(1318,1301,'title','We find the best doctor worldwide for you'),(1319,1301,'_title','field_595f05995871b'),(1320,1301,'subtitle','Our team of highly trained doctors have over 30 years'),(1321,1301,'_subtitle','field_595f06045871c'),(1322,1301,'titlebarLayout','default'),(1323,1301,'_titlebarLayout','field_59fa9e15663bf'),(1324,1301,'titlebarAlign','center'),(1325,1301,'_titlebarAlign','field_59fa9ed623c88'),(1326,1301,'sidebarPosition','default'),(1327,1301,'_sidebarPosition','field_595f06285871e'),(1328,1301,'sidebar','default'),(1329,1301,'_sidebar','field_595f06905871f'),(1330,1301,'headerStyles','default'),(1331,1301,'_headerStyles','field_60daebf1237b6'),(1332,1301,'_elementor_edit_mode','builder'),(1333,1301,'_elementor_template_type','wp-page'),(1334,1301,'_elementor_version','3.4.0'),(1335,1301,'_elementor_data','[{\"id\":\"96ede1f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"b292481\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1f76\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"b607992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cce9a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c7f3989\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"3df8758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"34d84d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PLEASE READ THROUGH THEIR PROFILES TO LEARN MORE.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b186417\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6e733dd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43202b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"81ac1b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"space_between_widgets\":40},\"elements\":[{\"id\":\"1381ae5\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"GASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC\\u2026\",\"listItems_groups\":[{\"_id\":\"57629b0\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"b90eca4\",\"social_icon\":\"fa fa-twitter\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"3f89239\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"8797347\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"4063c51\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"8290371\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200,\"space_between_widgets\":40},\"elements\":[{\"id\":\"d71c24c\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"98dfa4d\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"d962bc2\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"837a2a9\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"GASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC\\u2026\",\"listItems_groups\":[{\"_id\":\"57629b0\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"b90eca4\",\"social_icon\":\"fa fa-twitter\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"a19813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400,\"space_between_widgets\":40},\"elements\":[{\"id\":\"09e975f\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"5aba809\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"GASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC\\u2026\",\"listItems_groups\":[{\"_id\":\"57629b0\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"b90eca4\",\"social_icon\":\"fa fa-twitter\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"0e37de0\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"9f08069\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1336,1301,'_elementor_page_assets','a:0:{}'),(1337,1301,'_thumbnail_id','1739'),(1339,1301,'_elementor_controls_usage','a:6:{s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;s:5:\"color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:4;s:8:\"html_tag\";i:2;s:3:\"gap\";i:1;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:12;s:10:\"team_image\";i:12;s:10:\"team_title\";i:12;s:13:\"team_subtitle\";i:12;s:16:\"listItems_groups\";i:12;}}}}}'),(1340,1301,'slide_template','default'),(1341,1301,'rs_page_bg_color','#ffffff'),(1343,1368,'inline_featured_image','0'),(1344,1368,'inline_featured_image','0'),(1345,1368,'_wp_page_template','tmpl/template-fullwidth.php'),(1346,1368,'title',''),(1347,1368,'_title','field_595f05995871b'),(1348,1368,'subtitle',''),(1349,1368,'_subtitle','field_595f06045871c'),(1350,1368,'titlebarLayout','none'),(1351,1368,'_titlebarLayout','field_59fa9e15663bf'),(1352,1368,'titlebarAlign','default'),(1353,1368,'_titlebarAlign','field_59fa9ed623c88'),(1354,1368,'sidebarPosition','default'),(1355,1368,'_sidebarPosition','field_595f06285871e'),(1356,1368,'sidebar','default'),(1357,1368,'_sidebar','field_595f06905871f'),(1358,1368,'headerStyles','default'),(1359,1368,'_headerStyles','field_60daebf1237b6'),(1360,1368,'_elementor_edit_mode','builder'),(1361,1368,'_elementor_template_type','wp-page'),(1362,1368,'_elementor_version','3.4.0'),(1363,1368,'_elementor_data','[{\"id\":\"7467f3c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"928b4d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1244cfe\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ab757e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0bbfbf6\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d94961\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"7ab4438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8be7bdd\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"b511bc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d1b9c9d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e4a9e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1eba1f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"201c3ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f3ad479\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65c2f16\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925dcaa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"65a4b9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ae885eb\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e0c0f6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"18ed9d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c8055f5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3c01d7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2302a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d835bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f5ffaa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e83d0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"89375db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"2e90ce0\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"25d1342\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"98e1a84\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"e57ad0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6654661\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9645ff6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5677785\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"203961c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"d9dfdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb88942\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9fa31d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f59a224\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"257d702\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea81ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"13efb0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b684e21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"654b298\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0c4e64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a75f82e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7aa186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22c0b26\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"880c5a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"c61eaad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dcda992\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"611e1ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"971ffe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a050c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fabdcd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59285d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75d2fce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1996186\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7666aa3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e72c291\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"edf134f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"496e028\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5f2049f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40256ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10ed040\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16b4e15\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"e9f291d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"292999a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"55be3f2\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9837b9d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01e1bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"efd18eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ff6278\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d8878d\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"187449c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"fb3a9a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fecac43\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"d7590fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ea933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2dc03a9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"79b637c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"03607aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"db3fb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"e6a3b07\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8c0f8d6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7891d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc30f90\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"e420a7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1364,1368,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1366,1368,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:29;s:21:\"space_between_widgets\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:18;s:13:\"content_width\";i:17;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:9;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:8;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:6;s:6:\"weight\";i:2;s:3:\"gap\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:10;s:11:\"header_size\";i:8;s:4:\"link\";i:1;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_line_height\";i:5;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:5:\"align\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:24:\"namedical_basic_services\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_services\";a:4:{s:13:\"service_image\";i:3;s:14:\"services_title\";i:3;s:16:\"services_content\";i:3;s:18:\"services_more_link\";i:3;}}s:5:\"style\";a:2:{s:19:\"section_title_style\";a:4:{s:34:\"sasstp_title_typography_typography\";i:3;s:33:\"sasstp_title_typography_font_size\";i:3;s:35:\"sasstp_title_typography_font_weight\";i:3;s:35:\"sasstp_title_typography_line_height\";i:3;}s:21:\"section_content_style\";a:3:{s:29:\"content_typography_typography\";i:3;s:30:\"content_typography_font_weight\";i:3;s:13:\"content_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:6;s:12:\"text_columns\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:7:{s:10:\"text_align\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_line_height\";i:2;s:33:\"description_typography_typography\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:7:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:10:\"navigation\";i:1;s:12:\"caption_type\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:2:{s:15:\"blog_pagination\";i:1;s:13:\"read_more_txt\";i:1;}}}}}'),(1368,1378,'inline_featured_image','0'),(1369,1378,'inline_featured_image','0'),(1370,1378,'_wp_page_template','tmpl/template-fullwidth.php'),(1371,1378,'title',''),(1372,1378,'_title','field_595f05995871b'),(1373,1378,'subtitle',''),(1374,1378,'_subtitle','field_595f06045871c'),(1375,1378,'titlebarLayout','none'),(1376,1378,'_titlebarLayout','field_59fa9e15663bf'),(1377,1378,'titlebarAlign','default'),(1378,1378,'_titlebarAlign','field_59fa9ed623c88'),(1379,1378,'sidebarPosition','default'),(1380,1378,'_sidebarPosition','field_595f06285871e'),(1381,1378,'sidebar','default'),(1382,1378,'_sidebar','field_595f06905871f'),(1383,1378,'headerStyles','default'),(1384,1378,'_headerStyles','field_60daebf1237b6'),(1385,1378,'_elementor_edit_mode','builder'),(1386,1378,'_elementor_template_type','wp-page'),(1387,1378,'_elementor_version','3.4.0'),(1388,1378,'_elementor_data','[{\"id\":\"0df225b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2A2A2A1F\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"2aac226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5957a2f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"158776c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b93f2c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Free Delivery on all Orders Over $30\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5d4beac\"},{\"text\":\"30 Days Money Back Guarantee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a7f433a\"},{\"text\":\"Call us on a Toll Free Phone Number\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1a63c7c\"}],\"icon_align\":\"center\",\"divider\":\"yes\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"193c91d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-shop.jpg\",\"id\":1866,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"96ae7f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"806ec06\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"00e7bff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"0fa47b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75efc0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WooCommerce\",\"header_size\":\"span\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cb8f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 25% OFF Medicine Order\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a04897\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6db69f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Now\",\"size\":\"md\",\"background_color\":\"#2A2A2A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ebcd99c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"hide_tablet\":\"hidden-tablet\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"1c490bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b35e0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imagebox3-8.jpeg\",\"id\":1869,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Save 50% - N95 Face Mask\",\"description_text\":\"Shop Now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"e572f62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b0b7518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imagebox2-8.jpeg\",\"id\":1868,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Save 35% - Functional Foods \",\"description_text\":\"Shop Now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"542bcb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"280b779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imagebox-9.jpeg\",\"id\":1867,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Save 25% - The Medical Kit\",\"description_text\":\"Shop Now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e3313c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4364e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a47b9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Products\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb5e07\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1A\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"be602cc\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[products limit=\\\"5\\\" visibility=\\\"featured\\\" ]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6444514\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3c0d498\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6debb06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3b0a16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ccbc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"343b772\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb1ba46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3d94fd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"adb2385\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1A\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3131834\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[sale_products]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"f405731\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button white has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imgb1-13.jpeg\",\"id\":1769,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"acaa359\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"94decd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5476d8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Products\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a18f02c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1A\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e74c782\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[products limit=\\\"10\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5facc4b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d00e4dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8d48080\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"02dcfab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f93a14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4f5a7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"febe5a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd4ad33\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2f0a3c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1A\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d266022\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":false}],\"isInner\":false}]'),(1389,1378,'_elementor_page_assets','a:0:{}'),(1391,1378,'_elementor_controls_usage','a:10:{s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:16;s:21:\"space_between_widgets\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:9;s:13:\"content_width\";i:10;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:2;s:11:\"hide_tablet\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:7:\"divider\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"size\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:8;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:4:\"link\";i:8;s:8:\"position\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:12:{s:10:\"text_align\";i:7;s:27:\"title_typography_typography\";i:8;s:33:\"description_typography_typography\";i:8;s:32:\"description_typography_font_size\";i:4;s:37:\"description_typography_text_transform\";i:3;s:34:\"description_typography_line_height\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_line_height\";i:5;s:11:\"title_color\";i:2;s:17:\"description_color\";i:2;s:31:\"title_typography_text_transform\";i:1;s:34:\"description_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:3;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:1:{s:15:\"blog_pagination\";i:1;}}}}}'),(1393,1642,'inline_featured_image','0'),(1394,1642,'title',''),(1395,1642,'_title','field_595f05995871b'),(1396,1642,'subtitle',''),(1397,1642,'_subtitle','field_595f06045871c'),(1398,1642,'titlebarLayout','default'),(1399,1642,'_titlebarLayout','field_59fa9e15663bf'),(1400,1642,'titlebarAlign','default'),(1401,1642,'_titlebarAlign','field_59fa9ed623c88'),(1402,1642,'sidebarPosition','default'),(1403,1642,'_sidebarPosition','field_595f06285871e'),(1404,1642,'sidebar','default'),(1405,1642,'_sidebar','field_595f06905871f'),(1406,1642,'headerStyles','default'),(1407,1642,'_headerStyles','field_60daebf1237b6'),(1408,1729,'inline_featured_image','0'),(1409,1729,'inline_featured_image','0'),(1410,1729,'_wp_page_template','tmpl/template-fullwidth.php'),(1411,1729,'title',''),(1412,1729,'_title','field_595f05995871b'),(1413,1729,'subtitle',''),(1414,1729,'_subtitle','field_595f06045871c'),(1415,1729,'titlebarLayout','default'),(1416,1729,'_titlebarLayout','field_59fa9e15663bf'),(1417,1729,'titlebarAlign','right'),(1418,1729,'_titlebarAlign','field_59fa9ed623c88'),(1419,1729,'sidebarPosition','default'),(1420,1729,'_sidebarPosition','field_595f06285871e'),(1421,1729,'sidebar','default'),(1422,1729,'_sidebar','field_595f06905871f'),(1423,1729,'headerStyles','default'),(1424,1729,'_headerStyles','field_60daebf1237b6'),(1425,1729,'_elementor_edit_mode','builder'),(1426,1729,'_elementor_template_type','wp-page'),(1427,1729,'_elementor_version','3.3.1'),(1428,1729,'_elementor_data','[{\"id\":\"c860746\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"html_tag\":\"div\"},\"elements\":[{\"id\":\"99a5123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c115872\",\"elType\":\"widget\",\"settings\":{\"html\":\"<ul class=\\\"icons-wrap\\\">\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-weight-gain\\\"><\\/i>\\n        <p>iconlab-weight-gain<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-liquid-soap-container\\\"><\\/i>\\n        <p>iconlab-liquid-soap-container<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-research\\\"><\\/i>\\n        <p>iconlab-research<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-biology\\\"><\\/i>\\n        <p>iconlab-biology<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-medicine\\\"><\\/i>\\n        <p>iconlab-medicine<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pharmacy\\\"><\\/i>\\n        <p>iconlab-pharmacy<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-botany\\\"><\\/i>\\n        <p>iconlab-botany<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-microbiology\\\"><\\/i>\\n        <p>iconlab-microbiology<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-biochemistry\\\"><\\/i>\\n        <p>iconlab-biochemistry<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-embryo\\\"><\\/i>\\n        <p>iconlab-embryo<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pregnancy-test\\\"><\\/i>\\n        <p>iconlab-pregnancy-test<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-ovum-sperm\\\"><\\/i>\\n        <p>iconlab-ovum-sperm<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-sperm\\\"><\\/i>\\n        <p>iconlab-sperm<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-condom\\\"><\\/i>\\n        <p>iconlab-condom<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-medical-mask\\\"><\\/i>\\n        <p>iconlab-medical-mask<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-dont-touch-mouth\\\"><\\/i>\\n        <p>iconlab-dont-touch-mouth<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-dont-touch-eyes\\\"><\\/i>\\n        <p>iconlab-dont-touch-eyes<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-coughing\\\"><\\/i>\\n        <p>iconlab-coughing<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-lungs-infection\\\"><\\/i>\\n        <p>iconlab-lungs-infection<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-medication\\\"><\\/i>\\n        <p>iconlab-medication<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-call-doctor\\\"><\\/i>\\n        <p>iconlab-call-doctor<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-doctor\\\"><\\/i>\\n        <p>iconlab-doctor<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-gathering-restrictions\\\"><\\/i>\\n        <p>iconlab-gathering-restrictions<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-runny-nose\\\"><\\/i>\\n        <p>iconlab-runny-nose<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-sneeze\\\"><\\/i>\\n        <p>iconlab-sneeze<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-wash-hands\\\"><\\/i>\\n        <p>iconlab-wash-hands<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-infrared-thermometer\\\"><\\/i>\\n        <p>iconlab-infrared-thermometer<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-disinfectant\\\"><\\/i>\\n        <p>iconlab-disinfectant<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-hospital-bed\\\"><\\/i>\\n        <p>iconlab-hospital-bed<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-thermometer\\\"><\\/i>\\n        <p>iconlab-thermometer<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-virus\\\"><\\/i>\\n        <p>iconlab-virus<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-social-distancing\\\"><\\/i>\\n        <p>iconlab-social-distancing<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-no-contact\\\"><\\/i>\\n        <p>iconlab-no-contact<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-stay-home\\\"><\\/i>\\n        <p>iconlab-stay-home<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-potion\\\"><\\/i>\\n        <p>iconlab-potion<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-smoking\\\"><\\/i>\\n        <p>iconlab-smoking<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-no-smoking\\\"><\\/i>\\n        <p>iconlab-no-smoking<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-walking-support\\\"><\\/i>\\n        <p>iconlab-walking-support<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-bedroom\\\"><\\/i>\\n        <p>iconlab-bedroom<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-watch-heart\\\"><\\/i>\\n        <p>iconlab-watch-heart<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-phone-heart\\\"><\\/i>\\n        <p>iconlab-phone-heart<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-weight-loss\\\"><\\/i>\\n        <p>iconlab-weight-loss<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-measurement\\\"><\\/i>\\n        <p>iconlab-measurement<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-stretching\\\"><\\/i>\\n        <p>iconlab-stretching<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-diet-food\\\"><\\/i>\\n        <p>iconlab-diet-food<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-treadmill\\\"><\\/i>\\n        <p>iconlab-treadmill<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-mortar\\\"><\\/i>\\n        <p>iconlab-mortar<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-diet-plan\\\"><\\/i>\\n        <p>iconlab-diet-plan<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-food-scale\\\"><\\/i>\\n        <p>iconlab-food-scale<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-nutrition\\\"><\\/i>\\n        <p>iconlab-nutrition<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-diet\\\"><\\/i>\\n        <p>iconlab-diet<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-female\\\"><\\/i>\\n        <p>iconlab-female<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-woman-man\\\"><\\/i>\\n        <p>iconlab-woman-man<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-woman-21\\\"><\\/i>\\n        <p>iconlab-woman-21<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-wheelchair-2\\\"><\\/i>\\n        <p>iconlab-wheelchair-2<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-weight-scale\\\"><\\/i>\\n        <p>iconlab-weight-scale<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-weed\\\"><\\/i>\\n        <p>iconlab-weed<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-tooth\\\"><\\/i>\\n        <p>iconlab-tooth<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-temperature\\\"><\\/i>\\n        <p>iconlab-temperature<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-temperature-2\\\"><\\/i>\\n        <p>iconlab-temperature-2<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-syringe\\\"><\\/i>\\n        <p>iconlab-syringe<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-steps\\\"><\\/i>\\n        <p>iconlab-steps<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-male\\\"><\\/i>\\n        <p>iconlab-male<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pulse\\\"><\\/i>\\n        <p>iconlab-pulse<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-watch-heartbeat\\\"><\\/i>\\n        <p>iconlab-watch-heartbeat<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pulse-sleep\\\"><\\/i>\\n        <p>iconlab-pulse-sleep<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-phone-heartbeat\\\"><\\/i>\\n        <p>iconlab-phone-heartbeat<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pulse-chart\\\"><\\/i>\\n        <p>iconlab-pulse-chart<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-cure\\\"><\\/i>\\n        <p>iconlab-cure<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pill-bottle\\\"><\\/i>\\n        <p>iconlab-pill-bottle<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pill-43\\\"><\\/i>\\n        <p>iconlab-pill-43<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pill-42\\\"><\\/i>\\n        <p>iconlab-pill-42<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-patch\\\"><\\/i>\\n        <p>iconlab-patch<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-patch-34\\\"><\\/i>\\n        <p>iconlab-patch-34<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-nurse\\\"><\\/i>\\n        <p>iconlab-nurse<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-medical-clipboard\\\"><\\/i>\\n        <p>iconlab-medical-clipboard<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-molecule\\\"><\\/i>\\n        <p>iconlab-molecule<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-molecule-40\\\"><\\/i>\\n        <p>iconlab-molecule-40<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-molecule-39\\\"><\\/i>\\n        <p>iconlab-molecule-39<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-microscope\\\"><\\/i>\\n        <p>iconlab-microscope<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-man-20\\\"><\\/i>\\n        <p>iconlab-man-20<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-lungs\\\"><\\/i>\\n        <p>iconlab-lungs<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-chemistry\\\"><\\/i>\\n        <p>iconlab-chemistry<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-intestine\\\"><\\/i>\\n        <p>iconlab-intestine<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-humidity-52\\\"><\\/i>\\n        <p>iconlab-humidity-52<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-humidity-26\\\"><\\/i>\\n        <p>iconlab-humidity-26<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-hospital-34\\\"><\\/i>\\n        <p>iconlab-hospital-34<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-hospital-33\\\"><\\/i>\\n        <p>iconlab-hospital-33<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-hospital-32\\\"><\\/i>\\n        <p>iconlab-hospital-32<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-height\\\"><\\/i>\\n        <p>iconlab-height<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-heartbeat\\\"><\\/i>\\n        <p>iconlab-heartbeat<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-flask\\\"><\\/i>\\n        <p>iconlab-flask<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-flask-2\\\"><\\/i>\\n        <p>iconlab-flask-2<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-flame\\\"><\\/i>\\n        <p>iconlab-flame<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-heart-2\\\"><\\/i>\\n        <p>iconlab-heart-2<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-drop\\\"><\\/i>\\n        <p>iconlab-drop<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-stethoscope\\\"><\\/i>\\n        <p>iconlab-stethoscope<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-dna-38\\\"><\\/i>\\n        <p>iconlab-dna-38<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-dna-27\\\"><\\/i>\\n        <p>iconlab-dna-27<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-brain\\\"><\\/i>\\n        <p>iconlab-brain<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-bag-50\\\"><\\/i>\\n        <p>iconlab-bag-50<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-bag-49\\\"><\\/i>\\n        <p>iconlab-bag-49<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-atom\\\"><\\/i>\\n        <p>iconlab-atom<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-apple-2\\\"><\\/i>\\n        <p>iconlab-apple-2<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-c-pulse\\\"><\\/i>\\n        <p>iconlab-c-pulse<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-s-pulse\\\"><\\/i>\\n        <p>iconlab-s-pulse<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-ambulance\\\"><\\/i>\\n        <p>iconlab-ambulance<\\/p>\\n    <\\/li>\\n    \\n    <li>\\n        <i class=\\\"iconlab iconlab-ctrl-down\\\"><\\/i>\\n        <p>iconlab-ctrl-down<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-arrow-right\\\"><\\/i>\\n        <p>iconlab-arrow-right<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-arrow-left\\\"><\\/i>\\n        <p>iconlab-arrow-left<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-arrow-down\\\"><\\/i>\\n        <p>iconlab-arrow-down<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-arrow-up\\\"><\\/i>\\n        <p>iconlab-arrow-up<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-ctrl-left\\\"><\\/i>\\n        <p>iconlab-ctrl-left<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-ctrl-right\\\"><\\/i>\\n        <p>iconlab-ctrl-right<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-ctrl-up\\\"><\\/i>\\n        <p>iconlab-ctrl-up<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-upload-file\\\"><\\/i>\\n        <p>iconlab-upload-file<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-launch\\\"><\\/i>\\n        <p>iconlab-launch<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-delete-key\\\"><\\/i>\\n        <p>iconlab-delete-key<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-refresh\\\"><\\/i>\\n        <p>iconlab-refresh<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-log-in\\\"><\\/i>\\n        <p>iconlab-log-in<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-logout\\\"><\\/i>\\n        <p>iconlab-logout<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-zoom\\\"><\\/i>\\n        <p>iconlab-zoom<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-attachment\\\"><\\/i>\\n        <p>iconlab-attachment<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-settings-gear\\\"><\\/i>\\n        <p>iconlab-settings-gear<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-file-edit\\\"><\\/i>\\n        <p>iconlab-file-edit<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pen-2\\\"><\\/i>\\n        <p>iconlab-pen-2<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-d-edit\\\"><\\/i>\\n        <p>iconlab-d-edit<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-comment\\\"><\\/i>\\n        <p>iconlab-comment<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-comment-1\\\"><\\/i>\\n        <p>iconlab-comment-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-s-edit\\\"><\\/i>\\n        <p>iconlab-s-edit<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-pen\\\"><\\/i>\\n        <p>iconlab-pen<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-settings-gear-1\\\"><\\/i>\\n        <p>iconlab-settings-gear-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-d-check\\\"><\\/i>\\n        <p>iconlab-d-check<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-n-check\\\"><\\/i>\\n        <p>iconlab-n-check<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-verified\\\"><\\/i>\\n        <p>iconlab-verified<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-shopping-cart\\\"><\\/i>\\n        <p>iconlab-shopping-cart<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-add-to-cart\\\"><\\/i>\\n        <p>iconlab-add-to-cart<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-e-remove\\\"><\\/i>\\n        <p>iconlab-e-remove<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-e-add\\\"><\\/i>\\n        <p>iconlab-e-add<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-radio-btn\\\"><\\/i>\\n        <p>iconlab-radio-btn<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-radio-btn-checked\\\"><\\/i>\\n        <p>iconlab-radio-btn-checked<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-stack\\\"><\\/i>\\n        <p>iconlab-stack<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-c-check\\\"><\\/i>\\n        <p>iconlab-c-check<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-b-comment\\\"><\\/i>\\n        <p>iconlab-b-comment<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-alarm\\\"><\\/i>\\n        <p>iconlab-alarm<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-star-rate\\\"><\\/i>\\n        <p>iconlab-star-rate<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-heart\\\"><\\/i>\\n        <p>iconlab-heart<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-f-chat\\\"><\\/i>\\n        <p>iconlab-f-chat<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-phone-call\\\"><\\/i>\\n        <p>iconlab-phone-call<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-eye\\\"><\\/i>\\n        <p>iconlab-eye<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-email\\\"><\\/i>\\n        <p>iconlab-email<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-c-remove\\\"><\\/i>\\n        <p>iconlab-c-remove<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-verified-1\\\"><\\/i>\\n        <p>iconlab-verified-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-star-rate-1\\\"><\\/i>\\n        <p>iconlab-star-rate-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-phone-call-1\\\"><\\/i>\\n        <p>iconlab-phone-call-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-email-1\\\"><\\/i>\\n        <p>iconlab-email-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-eye-1\\\"><\\/i>\\n        <p>iconlab-eye-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-c-check-1\\\"><\\/i>\\n        <p>iconlab-c-check-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-f-chat-1\\\"><\\/i>\\n        <p>iconlab-f-chat-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-c-remove-1\\\"><\\/i>\\n        <p>iconlab-c-remove-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-alarm-1\\\"><\\/i>\\n        <p>iconlab-alarm-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-heart-1\\\"><\\/i>\\n        <p>iconlab-heart-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-like\\\"><\\/i>\\n        <p>iconlab-like<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-square-pin\\\"><\\/i>\\n        <p>iconlab-square-pin<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-square-pin-1\\\"><\\/i>\\n        <p>iconlab-square-pin-1<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-edit-color\\\"><\\/i>\\n        <p>iconlab-edit-color<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-arrow-sm-down\\\"><\\/i>\\n        <p>iconlab-arrow-sm-down<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-arrow-sm-left\\\"><\\/i>\\n        <p>iconlab-arrow-sm-left<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-arrow-sm-right\\\"><\\/i>\\n        <p>iconlab-arrow-sm-right<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-caret-sm-up\\\"><\\/i>\\n        <p>iconlab-caret-sm-up<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-cycle\\\"><\\/i>\\n        <p>iconlab-cycle<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-loop\\\"><\\/i>\\n        <p>iconlab-loop<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-img-stack\\\"><\\/i>\\n        <p>iconlab-img-stack<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-dashboard\\\"><\\/i>\\n        <p>iconlab-dashboard<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-box-2\\\"><\\/i>\\n        <p>iconlab-box-2<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-download-file\\\"><\\/i>\\n        <p>iconlab-download-file<\\/p>\\n    <\\/li>\\n\\n    <li>\\n        <i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>\\n        <p>iconlab-a-edit<\\/p>\\n    <\\/li>\\n                \\n<\\/ul>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1429,1729,'_elementor_page_assets','a:0:{}'),(1430,1729,'_elementor_controls_usage','a:3:{s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:3:{s:13:\"content_width\";i:1;s:15:\"stretch_section\";i:1;s:8:\"html_tag\";i:1;}}}}}'),(1431,1735,'_menu_item_type','post_type'),(1432,1735,'_menu_item_menu_item_parent','1081'),(1433,1735,'_menu_item_object_id','1729'),(1434,1735,'_menu_item_object','page'),(1435,1735,'_menu_item_target',''),(1436,1735,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1437,1735,'_menu_item_xfn',''),(1438,1735,'_menu_item_url',''),(1440,37,'inline_featured_image','0'),(1441,37,'_thumbnail_id','1812'),(1442,37,'title',''),(1443,37,'_title','field_595f05995871b'),(1444,37,'subtitle',''),(1445,37,'_subtitle','field_595f06045871c'),(1446,37,'titlebarLayout','default'),(1447,37,'_titlebarLayout','field_59fa9e15663bf'),(1448,37,'titlebarAlign','default'),(1449,37,'_titlebarAlign','field_59fa9ed623c88'),(1450,37,'sidebarPosition','default'),(1451,37,'_sidebarPosition','field_595f06285871e'),(1452,37,'sidebar','default'),(1453,37,'_sidebar','field_595f06905871f'),(1454,37,'headerStyles','default'),(1455,37,'_headerStyles','field_60daebf1237b6'),(1456,37,'inline_featured_image','0'),(1457,37,'slide_template','default'),(1458,37,'rs_page_bg_color','#ffffff'),(1460,40,'inline_featured_image','0'),(1461,40,'_thumbnail_id','1808'),(1462,40,'title',''),(1463,40,'_title','field_595f05995871b'),(1464,40,'subtitle',''),(1465,40,'_subtitle','field_595f06045871c'),(1466,40,'titlebarLayout','default'),(1467,40,'_titlebarLayout','field_59fa9e15663bf'),(1468,40,'titlebarAlign','default'),(1469,40,'_titlebarAlign','field_59fa9ed623c88'),(1470,40,'sidebarPosition','default'),(1471,40,'_sidebarPosition','field_595f06285871e'),(1472,40,'sidebar','default'),(1473,40,'_sidebar','field_595f06905871f'),(1474,40,'headerStyles','default'),(1475,40,'_headerStyles','field_60daebf1237b6'),(1476,40,'inline_featured_image','0'),(1477,40,'slide_template','default'),(1478,40,'rs_page_bg_color','#ffffff'),(1480,45,'inline_featured_image','0'),(1481,45,'_thumbnail_id','1811'),(1482,45,'title',''),(1483,45,'_title','field_595f05995871b'),(1484,45,'subtitle',''),(1485,45,'_subtitle','field_595f06045871c'),(1486,45,'titlebarLayout','default'),(1487,45,'_titlebarLayout','field_59fa9e15663bf'),(1488,45,'titlebarAlign','default'),(1489,45,'_titlebarAlign','field_59fa9ed623c88'),(1490,45,'sidebarPosition','default'),(1491,45,'_sidebarPosition','field_595f06285871e'),(1492,45,'sidebar','default'),(1493,45,'_sidebar','field_595f06905871f'),(1494,45,'headerStyles','default'),(1495,45,'_headerStyles','field_60daebf1237b6'),(1496,45,'inline_featured_image','0'),(1497,45,'slide_template','default'),(1498,45,'rs_page_bg_color','#ffffff'),(1500,48,'inline_featured_image','0'),(1501,48,'_thumbnail_id','1809'),(1502,48,'title',''),(1503,48,'_title','field_595f05995871b'),(1504,48,'subtitle',''),(1505,48,'_subtitle','field_595f06045871c'),(1506,48,'titlebarLayout','default'),(1507,48,'_titlebarLayout','field_59fa9e15663bf'),(1508,48,'titlebarAlign','default'),(1509,48,'_titlebarAlign','field_59fa9ed623c88'),(1510,48,'sidebarPosition','default'),(1511,48,'_sidebarPosition','field_595f06285871e'),(1512,48,'sidebar','default'),(1513,48,'_sidebar','field_595f06905871f'),(1514,48,'headerStyles','default'),(1515,48,'_headerStyles','field_60daebf1237b6'),(1516,48,'inline_featured_image','0'),(1517,48,'slide_template','default'),(1518,48,'rs_page_bg_color','#ffffff'),(1520,53,'inline_featured_image','0'),(1521,53,'_thumbnail_id','1804'),(1522,53,'title',''),(1523,53,'_title','field_595f05995871b'),(1524,53,'subtitle',''),(1525,53,'_subtitle','field_595f06045871c'),(1526,53,'titlebarLayout','default'),(1527,53,'_titlebarLayout','field_59fa9e15663bf'),(1528,53,'titlebarAlign','default'),(1529,53,'_titlebarAlign','field_59fa9ed623c88'),(1530,53,'sidebarPosition','default'),(1531,53,'_sidebarPosition','field_595f06285871e'),(1532,53,'sidebar','default'),(1533,53,'_sidebar','field_595f06905871f'),(1534,53,'headerStyles','default'),(1535,53,'_headerStyles','field_60daebf1237b6'),(1536,53,'inline_featured_image','0'),(1537,53,'slide_template','default'),(1538,53,'rs_page_bg_color','#ffffff'),(1540,58,'inline_featured_image','0'),(1541,58,'_thumbnail_id','1806'),(1542,58,'title',''),(1543,58,'_title','field_595f05995871b'),(1544,58,'subtitle',''),(1545,58,'_subtitle','field_595f06045871c'),(1546,58,'titlebarLayout','default'),(1547,58,'_titlebarLayout','field_59fa9e15663bf'),(1548,58,'titlebarAlign','default'),(1549,58,'_titlebarAlign','field_59fa9ed623c88'),(1550,58,'sidebarPosition','default'),(1551,58,'_sidebarPosition','field_595f06285871e'),(1552,58,'sidebar','default'),(1553,58,'_sidebar','field_595f06905871f'),(1554,58,'headerStyles','default'),(1555,58,'_headerStyles','field_60daebf1237b6'),(1556,58,'inline_featured_image','0'),(1557,58,'slide_template','default'),(1558,58,'rs_page_bg_color','#ffffff'),(1560,61,'inline_featured_image','0'),(1561,61,'_thumbnail_id','1813'),(1562,61,'title',''),(1563,61,'_title','field_595f05995871b'),(1564,61,'subtitle',''),(1565,61,'_subtitle','field_595f06045871c'),(1566,61,'titlebarLayout','default'),(1567,61,'_titlebarLayout','field_59fa9e15663bf'),(1568,61,'titlebarAlign','default'),(1569,61,'_titlebarAlign','field_59fa9ed623c88'),(1570,61,'sidebarPosition','default'),(1571,61,'_sidebarPosition','field_595f06285871e'),(1572,61,'sidebar','default'),(1573,61,'_sidebar','field_595f06905871f'),(1574,61,'headerStyles','default'),(1575,61,'_headerStyles','field_60daebf1237b6'),(1576,61,'inline_featured_image','0'),(1577,61,'slide_template','default'),(1578,61,'rs_page_bg_color','#ffffff'),(1580,65,'inline_featured_image','0'),(1581,65,'_thumbnail_id','1807'),(1582,65,'title',''),(1583,65,'_title','field_595f05995871b'),(1584,65,'subtitle',''),(1585,65,'_subtitle','field_595f06045871c'),(1586,65,'titlebarLayout','default'),(1587,65,'_titlebarLayout','field_59fa9e15663bf'),(1588,65,'titlebarAlign','default'),(1589,65,'_titlebarAlign','field_59fa9ed623c88'),(1590,65,'sidebarPosition','default'),(1591,65,'_sidebarPosition','field_595f06285871e'),(1592,65,'sidebar','default'),(1593,65,'_sidebar','field_595f06905871f'),(1594,65,'headerStyles','default'),(1595,65,'_headerStyles','field_60daebf1237b6'),(1596,65,'inline_featured_image','0'),(1597,65,'slide_template','default'),(1598,65,'rs_page_bg_color','#ffffff'),(1600,70,'inline_featured_image','0'),(1601,70,'_thumbnail_id','1814'),(1602,70,'title',''),(1603,70,'_title','field_595f05995871b'),(1604,70,'subtitle',''),(1605,70,'_subtitle','field_595f06045871c'),(1606,70,'titlebarLayout','default'),(1607,70,'_titlebarLayout','field_59fa9e15663bf'),(1608,70,'titlebarAlign','default'),(1609,70,'_titlebarAlign','field_59fa9ed623c88'),(1610,70,'sidebarPosition','default'),(1611,70,'_sidebarPosition','field_595f06285871e'),(1612,70,'sidebar','default'),(1613,70,'_sidebar','field_595f06905871f'),(1614,70,'headerStyles','default'),(1615,70,'_headerStyles','field_60daebf1237b6'),(1616,70,'_wp_old_slug','covid-tongue-should-it-be-considered-as-a-symptom-after-all'),(1617,70,'inline_featured_image','0'),(1618,70,'slide_template','default'),(1619,70,'rs_page_bg_color','#ffffff'),(1620,75,'inline_featured_image','0'),(1621,79,'inline_featured_image','0'),(1622,79,'_thumbnail_id','1935'),(1623,79,'total_sales','0'),(1624,79,'_tax_status','taxable'),(1625,79,'_tax_class',''),(1626,79,'_manage_stock','no'),(1627,79,'_backorders','no'),(1628,79,'_sold_individually','no'),(1629,79,'_virtual','no'),(1630,79,'_downloadable','no'),(1631,79,'_download_limit','-1'),(1632,79,'_download_expiry','-1'),(1633,79,'_stock',''),(1634,79,'_stock_status','outofstock'),(1635,79,'_wc_average_rating','4.00'),(1636,79,'_wc_review_count','2'),(1637,79,'_product_version','6.5.1'),(1638,79,'title',''),(1639,79,'_title','field_595f05995871b'),(1640,79,'subtitle',''),(1641,79,'_subtitle','field_595f06045871c'),(1642,79,'titlebarLayout','default'),(1643,79,'_titlebarLayout','field_59fa9e15663bf'),(1644,79,'titlebarAlign','default'),(1645,79,'_titlebarAlign','field_59fa9ed623c88'),(1646,79,'sidebarPosition','default'),(1647,79,'_sidebarPosition','field_595f06285871e'),(1648,79,'sidebar','default'),(1649,79,'_sidebar','field_595f06905871f'),(1650,79,'headerStyles','default'),(1651,79,'_headerStyles','field_60daebf1237b6'),(1652,79,'rs_page_bg_color',''),(1653,79,'_product_attributes','a:1:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(1654,79,'_product_image_gallery','1936'),(1655,79,'_wp_old_slug','temperature-gun'),(1656,79,'_sku','TGun-712'),(1657,79,'_price','26.99'),(1658,79,'_price','32.99'),(1659,79,'_wc_rating_count','a:2:{i:3;i:1;i:5;i:1;}'),(1660,79,'slide_template',''),(1661,102,'inline_featured_image','0'),(1662,102,'_regular_price','19.99'),(1663,102,'_sale_price','17.99'),(1664,102,'total_sales','0'),(1665,102,'_tax_status','taxable'),(1666,102,'_tax_class',''),(1667,102,'_manage_stock','no'),(1668,102,'_backorders','no'),(1669,102,'_sold_individually','no'),(1670,102,'_virtual','no'),(1671,102,'_downloadable','no'),(1672,102,'_download_limit','-1'),(1673,102,'_download_expiry','-1'),(1674,102,'_stock',''),(1675,102,'_stock_status','instock'),(1676,102,'_wc_average_rating','0'),(1677,102,'_wc_review_count','0'),(1678,102,'_product_version','5.5.2'),(1679,102,'_price','17.99'),(1680,102,'_product_image_gallery','1942'),(1681,102,'title',''),(1682,102,'_title','field_595f05995871b'),(1683,102,'subtitle',''),(1684,102,'_subtitle','field_595f06045871c'),(1685,102,'titlebarLayout','default'),(1686,102,'_titlebarLayout','field_59fa9e15663bf'),(1687,102,'titlebarAlign','default'),(1688,102,'_titlebarAlign','field_59fa9ed623c88'),(1689,102,'sidebarPosition','default'),(1690,102,'_sidebarPosition','field_595f06285871e'),(1691,102,'sidebar','default'),(1692,102,'_sidebar','field_595f06905871f'),(1693,102,'headerStyles','default'),(1694,102,'_headerStyles','field_60daebf1237b6'),(1695,102,'rs_page_bg_color',''),(1696,102,'_thumbnail_id','1943'),(1697,102,'slide_template',''),(1698,105,'inline_featured_image','0'),(1699,105,'_thumbnail_id','1916'),(1700,105,'_regular_price','71.99'),(1701,105,'_sale_price','17.99'),(1702,105,'total_sales','0'),(1703,105,'_tax_status','taxable'),(1704,105,'_tax_class',''),(1705,105,'_manage_stock','no'),(1706,105,'_backorders','no'),(1707,105,'_sold_individually','no'),(1708,105,'_virtual','no'),(1709,105,'_downloadable','no'),(1710,105,'_download_limit','-1'),(1711,105,'_download_expiry','-1'),(1712,105,'_stock',''),(1713,105,'_stock_status','instock'),(1714,105,'_wc_average_rating','0'),(1715,105,'_wc_review_count','0'),(1716,105,'_product_version','5.5.2'),(1717,105,'_price','17.99'),(1718,105,'_product_image_gallery','1917,1918'),(1719,105,'title',''),(1720,105,'_title','field_595f05995871b'),(1721,105,'subtitle',''),(1722,105,'_subtitle','field_595f06045871c'),(1723,105,'titlebarLayout','default'),(1724,105,'_titlebarLayout','field_59fa9e15663bf'),(1725,105,'titlebarAlign','default'),(1726,105,'_titlebarAlign','field_59fa9ed623c88'),(1727,105,'sidebarPosition','default'),(1728,105,'_sidebarPosition','field_595f06285871e'),(1729,105,'sidebar','default'),(1730,105,'_sidebar','field_595f06905871f'),(1731,105,'headerStyles','default'),(1732,105,'_headerStyles','field_60daebf1237b6'),(1733,105,'rs_page_bg_color',''),(1734,105,'slide_template',''),(1735,109,'inline_featured_image','0'),(1736,109,'_thumbnail_id','1925'),(1737,109,'_regular_price','19.99'),(1738,109,'_sale_price','11.99'),(1739,109,'total_sales','0'),(1740,109,'_tax_status','taxable'),(1741,109,'_tax_class',''),(1742,109,'_manage_stock','no'),(1743,109,'_backorders','no'),(1744,109,'_sold_individually','no'),(1745,109,'_virtual','no'),(1746,109,'_downloadable','no'),(1747,109,'_download_limit','-1'),(1748,109,'_download_expiry','-1'),(1749,109,'_stock',''),(1750,109,'_stock_status','instock'),(1751,109,'_wc_average_rating','0'),(1752,109,'_wc_review_count','0'),(1753,109,'_product_version','5.5.2'),(1754,109,'_price','11.99'),(1755,109,'_product_image_gallery','1926'),(1756,109,'title',''),(1757,109,'_title','field_595f05995871b'),(1758,109,'subtitle',''),(1759,109,'_subtitle','field_595f06045871c'),(1760,109,'titlebarLayout','default'),(1761,109,'_titlebarLayout','field_59fa9e15663bf'),(1762,109,'titlebarAlign','default'),(1763,109,'_titlebarAlign','field_59fa9ed623c88'),(1764,109,'sidebarPosition','default'),(1765,109,'_sidebarPosition','field_595f06285871e'),(1766,109,'sidebar','default'),(1767,109,'_sidebar','field_595f06905871f'),(1768,109,'headerStyles','default'),(1769,109,'_headerStyles','field_60daebf1237b6'),(1770,109,'rs_page_bg_color',''),(1771,109,'slide_template',''),(1772,112,'inline_featured_image','0'),(1773,112,'total_sales','0'),(1774,112,'_tax_status','taxable'),(1775,112,'_tax_class',''),(1776,112,'_manage_stock','no'),(1777,112,'_backorders','no'),(1778,112,'_sold_individually','no'),(1779,112,'_virtual','no'),(1780,112,'_downloadable','no'),(1781,112,'_download_limit','-1'),(1782,112,'_download_expiry','-1'),(1783,112,'_stock',''),(1784,112,'_stock_status','outofstock'),(1785,112,'_wc_average_rating','0'),(1786,112,'_wc_review_count','0'),(1787,112,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(1788,112,'_product_version','5.5.2'),(1789,112,'_thumbnail_id','1927'),(1790,112,'_product_image_gallery','1928,1929'),(1791,112,'title',''),(1792,112,'_title','field_595f05995871b'),(1793,112,'subtitle',''),(1794,112,'_subtitle','field_595f06045871c'),(1795,112,'titlebarLayout','default'),(1796,112,'_titlebarLayout','field_59fa9e15663bf'),(1797,112,'titlebarAlign','default'),(1798,112,'_titlebarAlign','field_59fa9ed623c88'),(1799,112,'sidebarPosition','default'),(1800,112,'_sidebarPosition','field_595f06285871e'),(1801,112,'sidebar','default'),(1802,112,'_sidebar','field_595f06905871f'),(1803,112,'headerStyles','default'),(1804,112,'_headerStyles','field_60daebf1237b6'),(1805,112,'rs_page_bg_color',''),(1806,112,'_sku','WC-712'),(1807,112,'_weight','8'),(1808,112,'_length','100'),(1809,112,'_width','120'),(1810,112,'_height','75'),(1811,112,'_price','17.99'),(1812,112,'_price','24.99'),(1813,112,'_price','34.99'),(1814,112,'slide_template',''),(1815,123,'inline_featured_image','0'),(1816,123,'_sku','TGun-712-1'),(1817,123,'total_sales','0'),(1818,123,'_tax_status','taxable'),(1819,123,'_tax_class',''),(1820,123,'_manage_stock','no'),(1821,123,'_backorders','no'),(1822,123,'_sold_individually','no'),(1823,123,'_virtual','no'),(1824,123,'_downloadable','no'),(1825,123,'_product_image_gallery','1935'),(1826,123,'_download_limit','-1'),(1827,123,'_download_expiry','-1'),(1828,123,'_thumbnail_id','1936'),(1829,123,'_stock',''),(1830,123,'_stock_status','outofstock'),(1831,123,'_wc_average_rating','0'),(1832,123,'_wc_review_count','0'),(1833,123,'_product_attributes','a:1:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(1834,123,'_product_version','5.5.2'),(1835,123,'title',''),(1836,123,'_title','field_595f05995871b'),(1837,123,'subtitle',''),(1838,123,'_subtitle','field_595f06045871c'),(1839,123,'titlebarLayout','default'),(1840,123,'_titlebarLayout','field_59fa9e15663bf'),(1841,123,'titlebarAlign','default'),(1842,123,'_titlebarAlign','field_59fa9ed623c88'),(1843,123,'sidebarPosition','default'),(1844,123,'_sidebarPosition','field_595f06285871e'),(1845,123,'sidebar','default'),(1846,123,'_sidebar','field_595f06905871f'),(1847,123,'headerStyles','default'),(1848,123,'_headerStyles','field_60daebf1237b6'),(1849,123,'rs_page_bg_color',''),(1850,123,'_price','26.99'),(1851,123,'_price','32.99'),(1852,123,'slide_template',''),(1853,126,'inline_featured_image','0'),(1854,126,'_sku','WC-712-1'),(1855,126,'total_sales','0'),(1856,126,'_tax_status','taxable'),(1857,126,'_tax_class',''),(1858,126,'_manage_stock','no'),(1859,126,'_backorders','no'),(1860,126,'_sold_individually','no'),(1861,126,'_weight','8'),(1862,126,'_length','100'),(1863,126,'_width','120'),(1864,126,'_height','75'),(1865,126,'_virtual','no'),(1866,126,'_downloadable','no'),(1867,126,'_product_image_gallery','1929,1928,1927'),(1868,126,'_download_limit','-1'),(1869,126,'_download_expiry','-1'),(1870,126,'_thumbnail_id','1929'),(1871,126,'_stock',''),(1872,126,'_stock_status','outofstock'),(1873,126,'_wc_average_rating','5.00'),(1874,126,'_wc_review_count','2'),(1875,126,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(1876,126,'_product_version','6.5.1'),(1877,126,'title',''),(1878,126,'_title','field_595f05995871b'),(1879,126,'subtitle',''),(1880,126,'_subtitle','field_595f06045871c'),(1881,126,'titlebarLayout','default'),(1882,126,'_titlebarLayout','field_59fa9e15663bf'),(1883,126,'titlebarAlign','default'),(1884,126,'_titlebarAlign','field_59fa9ed623c88'),(1885,126,'sidebarPosition','default'),(1886,126,'_sidebarPosition','field_595f06285871e'),(1887,126,'sidebar','default'),(1888,126,'_sidebar','field_595f06905871f'),(1889,126,'headerStyles','default'),(1890,126,'_headerStyles','field_60daebf1237b6'),(1891,126,'rs_page_bg_color',''),(1892,126,'_price','24.99'),(1893,126,'_price','34.99'),(1894,126,'_wc_rating_count','a:1:{i:5;i:2;}'),(1895,126,'slide_template',''),(1896,134,'inline_featured_image','0'),(1897,134,'_thumbnail_id','1922'),(1898,134,'_regular_price','15.99'),(1899,134,'total_sales','0'),(1900,134,'_tax_status','taxable'),(1901,134,'_tax_class',''),(1902,134,'_manage_stock','no'),(1903,134,'_backorders','no'),(1904,134,'_sold_individually','no'),(1905,134,'_virtual','no'),(1906,134,'_downloadable','no'),(1907,134,'_download_limit','-1'),(1908,134,'_download_expiry','-1'),(1909,134,'_stock',''),(1910,134,'_stock_status','instock'),(1911,134,'_wc_average_rating','4.50'),(1912,134,'_wc_review_count','2'),(1913,134,'_product_version','6.5.1'),(1914,134,'_price','15.99'),(1915,134,'_product_image_gallery','1923,1924'),(1916,134,'title',''),(1917,134,'_title','field_595f05995871b'),(1918,134,'subtitle',''),(1919,134,'_subtitle','field_595f06045871c'),(1920,134,'titlebarLayout','default'),(1921,134,'_titlebarLayout','field_59fa9e15663bf'),(1922,134,'titlebarAlign','default'),(1923,134,'_titlebarAlign','field_59fa9ed623c88'),(1924,134,'sidebarPosition','default'),(1925,134,'_sidebarPosition','field_595f06285871e'),(1926,134,'sidebar','default'),(1927,134,'_sidebar','field_595f06905871f'),(1928,134,'headerStyles','default'),(1929,134,'_headerStyles','field_60daebf1237b6'),(1930,134,'rs_page_bg_color',''),(1931,134,'_wp_old_slug','jamieson-vitamin-d3-1000iu-drops'),(1932,134,'_wc_rating_count','a:2:{i:4;i:1;i:5;i:1;}'),(1933,134,'_wp_old_slug','vitamin-d3-1000-iu-spray'),(1934,134,'slide_template',''),(1935,138,'inline_featured_image','0'),(1936,138,'_thumbnail_id','1912'),(1937,138,'_regular_price','19.99'),(1938,138,'_sale_price','17.99'),(1939,138,'total_sales','0'),(1940,138,'_tax_status','taxable'),(1941,138,'_tax_class',''),(1942,138,'_manage_stock','no'),(1943,138,'_backorders','no'),(1944,138,'_sold_individually','no'),(1945,138,'_virtual','no'),(1946,138,'_downloadable','no'),(1947,138,'_download_limit','-1'),(1948,138,'_download_expiry','-1'),(1949,138,'_stock',''),(1950,138,'_stock_status','instock'),(1951,138,'_wc_average_rating','0'),(1952,138,'_wc_review_count','0'),(1953,138,'_product_version','5.5.2'),(1954,138,'_price','17.99'),(1955,138,'_product_image_gallery','1913'),(1956,138,'title',''),(1957,138,'_title','field_595f05995871b'),(1958,138,'subtitle',''),(1959,138,'_subtitle','field_595f06045871c'),(1960,138,'titlebarLayout','default'),(1961,138,'_titlebarLayout','field_59fa9e15663bf'),(1962,138,'titlebarAlign','default'),(1963,138,'_titlebarAlign','field_59fa9ed623c88'),(1964,138,'sidebarPosition','default'),(1965,138,'_sidebarPosition','field_595f06285871e'),(1966,138,'sidebar','default'),(1967,138,'_sidebar','field_595f06905871f'),(1968,138,'headerStyles','default'),(1969,138,'_headerStyles','field_60daebf1237b6'),(1970,138,'rs_page_bg_color',''),(1971,138,'slide_template',''),(1972,1949,'inline_featured_image','0'),(1973,1949,'_wp_page_template','tmpl/template-fullwidth.php'),(1974,1949,'slide_template','default'),(1975,1949,'rs_page_bg_color','#ffffff'),(1976,1949,'title',''),(1977,1949,'_title','field_595f05995871b'),(1978,1949,'subtitle',''),(1979,1949,'_subtitle','field_595f06045871c'),(1980,1949,'titlebarLayout','none'),(1981,1949,'_titlebarLayout','field_59fa9e15663bf'),(1982,1949,'titlebarAlign','default'),(1983,1949,'_titlebarAlign','field_59fa9ed623c88'),(1984,1949,'sidebarPosition','default'),(1985,1949,'_sidebarPosition','field_595f06285871e'),(1986,1949,'sidebar','default'),(1987,1949,'_sidebar','field_595f06905871f'),(1988,1949,'headerStyles','default'),(1989,1949,'_headerStyles','field_60daebf1237b6'),(1990,1949,'_elementor_edit_mode','builder'),(1991,1949,'_elementor_template_type','wp-page'),(1992,1949,'_elementor_version','3.4.0'),(1993,1949,'_elementor_data','[{\"id\":\"954b5ae\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\"},\"elements\":[{\"id\":\"43d3915\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae475d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage\",\"shortcode\":\"[rev_slider alias=\\\"home\\\" slidertitle=\\\"Homepage\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"995d6ee\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"46abb01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1dfb578\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7ee32c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6283380\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a006717\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"53b97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"a08640a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"939726c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"370dfe0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a5dd720\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c75800a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9b081\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d551b8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8070085\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1264fe3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0d31d53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b95bf54\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2943253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"aadbae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bbf37c7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1fd71a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"1c8d3f7\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"9143392\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e30dd4d\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"5b869e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"e3afacb\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4fdf5dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78badcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d436c1c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"46d781d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"b385744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"94d612c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team of highly trained doctors\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5480d4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c No matter what your concern, your first stop is one of our accessible, expert health professionals. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c5f6c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9c3daf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2026712\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9f928e3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"276e653\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"fdede28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"271137f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please read through their profiles to learn more.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1538d79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"01364c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get To Know Our Doctors\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"be74bd5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68960fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a6f31d\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"f431b94\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"47c57f1\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"552e63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":300},\"elements\":[{\"id\":\"4fd7dab\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"1f17fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"dc5fc31\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"6712854\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":500},\"elements\":[{\"id\":\"c3d3a6f\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cedd5ec\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a5bffa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6f7a17\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button white has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imgb1-13.jpeg\",\"id\":1769,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbd299c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"d6fcc3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"41c9085\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5f08359\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"791c0ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2451320\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c5930f3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c3e0d24\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da04a4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d8599c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5b91593\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9493562\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96b350b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9ef36d3\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"fb9b65e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f192752\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"fdaef5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"610dced\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47f5fbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c2f81fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8440200\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6c4bca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"49b7654\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2d6f421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"0e0cb4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"0f15725\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"0eba1c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.664,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6673c6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"c0c74f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"469f07c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f5a77ce\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Highlights:\",\"taxonomy\":\"category\",\"classes\":\"\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"951ea37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0edf068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5b27c78\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"animation\":\"none\"},\"elements\":[{\"id\":\"4a8b423\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d6b67d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61fc01f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d3c955\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3d35c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e41b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3d525eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4750667\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ea0ee72\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e889c48\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"ba125f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a31bb1e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"b76d255\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"32a0944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9917d23\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"e572609\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"bd8d398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are some helpful links to get you answers faster.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"abda07e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"86e12b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b4706d3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"15bd864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"dde262f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EAE5ED\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"48c5a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"2e8b1b7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F4DDDD\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"fd59c93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"553cb50\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e8cfc4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26f6a2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d2e102\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"7acd6e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"01adba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"996b17c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"7e8919c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4776214\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"200e1c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6577d80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f18579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"af83f68\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54072ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"963a3ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fa39727\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"823ea9d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1dc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1626c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"313ecff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e7c969\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34dfb0d\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"ca85712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"961816d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"818d3fb\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa097b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d3ee5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e280d73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8950dd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"c458c55\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ec7a734\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"753856b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f4b8be\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1994,1949,'_elementor_page_assets','a:0:{}'),(1995,1949,'_elementor_controls_usage','a:18:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:55;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:55;s:21:\"space_between_widgets\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:7;s:11:\"hide_tablet\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:13;s:15:\"animation_delay\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:8:\"html_tag\";i:25;s:13:\"content_width\";i:29;s:3:\"gap\";i:5;s:18:\"gap_columns_custom\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:14;s:7:\"padding\";i:8;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:10;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:10;s:6:\"weight\";i:4;s:3:\"gap\";i:10;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:15;s:11:\"header_size\";i:12;s:4:\"link\";i:1;s:5:\"align\";i:4;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:6;s:22:\"typography_line_height\";i:6;s:11:\"title_color\";i:2;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:7;s:5:\"align\";i:5;s:4:\"link\";i:6;s:4:\"size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:12:\"_css_classes\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:13:\"border_radius\";i:2;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:4;s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:4;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:5;s:10:\"team_image\";i:5;s:10:\"team_title\";i:5;s:13:\"team_subtitle\";i:5;s:16:\"listItems_groups\";i:5;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:8;s:12:\"text_columns\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:2:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}s:19:\"wp-widget-tag_cloud\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}}'),(1997,98,'_variation_description',''),(1998,98,'total_sales','0'),(1999,98,'_tax_status','taxable'),(2000,98,'_tax_class','parent'),(2001,98,'_manage_stock','no'),(2002,98,'_backorders','no'),(2003,98,'_sold_individually','no'),(2004,98,'_virtual','no'),(2005,98,'_downloadable','no'),(2006,98,'_download_limit','-1'),(2007,98,'_download_expiry','-1'),(2008,98,'_stock',''),(2009,98,'_stock_status','instock'),(2010,98,'_wc_average_rating','0'),(2011,98,'_wc_review_count','0'),(2012,98,'attribute_pa_color','black'),(2013,98,'_product_version','5.4.1'),(2014,98,'_regular_price','26.99'),(2015,98,'_weight','0.6'),(2016,98,'_length','5'),(2017,98,'_width','8'),(2018,98,'_height','15'),(2019,98,'_thumbnail_id','77'),(2020,98,'_price','26.99'),(2021,99,'_variation_description',''),(2022,99,'total_sales','0'),(2023,99,'_tax_status','taxable'),(2024,99,'_tax_class','parent'),(2025,99,'_manage_stock','no'),(2026,99,'_backorders','no'),(2027,99,'_sold_individually','no'),(2028,99,'_virtual','no'),(2029,99,'_downloadable','no'),(2030,99,'_download_limit','-1'),(2031,99,'_download_expiry','-1'),(2032,99,'_stock',''),(2033,99,'_stock_status','instock'),(2034,99,'_wc_average_rating','0'),(2035,99,'_wc_review_count','0'),(2036,99,'attribute_pa_color','blue'),(2037,99,'_product_version','5.4.1'),(2038,99,'_regular_price','32.99'),(2039,99,'_weight','0.6'),(2040,99,'_length','5'),(2041,99,'_width','8'),(2042,99,'_height','15'),(2043,99,'_thumbnail_id','76'),(2044,99,'_price','32.99'),(2045,117,'_variation_description',''),(2046,117,'total_sales','0'),(2047,117,'_tax_status','taxable'),(2048,117,'_tax_class','parent'),(2049,117,'_manage_stock','no'),(2050,117,'_backorders','no'),(2051,117,'_sold_individually','no'),(2052,117,'_virtual','no'),(2053,117,'_downloadable','no'),(2054,117,'_download_limit','-1'),(2055,117,'_download_expiry','-1'),(2056,117,'_stock',''),(2057,117,'_stock_status','instock'),(2058,117,'_wc_average_rating','0'),(2059,117,'_wc_review_count','0'),(2060,117,'attribute_pa_size','21'),(2061,117,'attribute_pa_color','black'),(2062,117,'_product_version','5.4.1'),(2063,117,'_regular_price','24.99'),(2064,117,'_thumbnail_id','0'),(2065,117,'_price','24.99'),(2066,118,'_variation_description',''),(2067,118,'total_sales','0'),(2068,118,'_tax_status','taxable'),(2069,118,'_tax_class','parent'),(2070,118,'_manage_stock','no'),(2071,118,'_backorders','no'),(2072,118,'_sold_individually','no'),(2073,118,'_virtual','no'),(2074,118,'_downloadable','no'),(2075,118,'_download_limit','-1'),(2076,118,'_download_expiry','-1'),(2077,118,'_stock',''),(2078,118,'_stock_status','instock'),(2079,118,'_wc_average_rating','0'),(2080,118,'_wc_review_count','0'),(2081,118,'attribute_pa_size','33'),(2082,118,'attribute_pa_color','black'),(2083,118,'_product_version','5.4.1'),(2084,118,'_regular_price','34.99'),(2085,118,'_thumbnail_id','0'),(2086,118,'_price','34.99'),(2087,119,'_variation_description',''),(2088,119,'total_sales','0'),(2089,119,'_tax_status','taxable'),(2090,119,'_tax_class','parent'),(2091,119,'_manage_stock','no'),(2092,119,'_backorders','no'),(2093,119,'_sold_individually','no'),(2094,119,'_virtual','no'),(2095,119,'_downloadable','no'),(2096,119,'_download_limit','-1'),(2097,119,'_download_expiry','-1'),(2098,119,'_stock',''),(2099,119,'_stock_status','instock'),(2100,119,'_wc_average_rating','0'),(2101,119,'_wc_review_count','0'),(2102,119,'attribute_pa_size','21'),(2103,119,'attribute_pa_color','red'),(2104,119,'_product_version','5.4.1'),(2105,119,'_regular_price','24.99'),(2106,119,'_thumbnail_id','0'),(2107,119,'_price','24.99'),(2108,120,'_variation_description',''),(2109,120,'total_sales','0'),(2110,120,'_tax_status','taxable'),(2111,120,'_tax_class','parent'),(2112,120,'_manage_stock','no'),(2113,120,'_backorders','no'),(2114,120,'_sold_individually','no'),(2115,120,'_virtual','no'),(2116,120,'_downloadable','no'),(2117,120,'_download_limit','-1'),(2118,120,'_download_expiry','-1'),(2119,120,'_stock',''),(2120,120,'_stock_status','instock'),(2121,120,'_wc_average_rating','0'),(2122,120,'_wc_review_count','0'),(2123,120,'attribute_pa_size','33'),(2124,120,'attribute_pa_color','red'),(2125,120,'_product_version','5.4.1'),(2126,120,'_regular_price','34.99'),(2127,120,'_thumbnail_id','0'),(2128,120,'_price','34.99'),(2129,121,'_variation_description',''),(2130,121,'total_sales','0'),(2131,121,'_tax_status','taxable'),(2132,121,'_tax_class','parent'),(2133,121,'_manage_stock','no'),(2134,121,'_backorders','no'),(2135,121,'_sold_individually','no'),(2136,121,'_virtual','no'),(2137,121,'_downloadable','no'),(2138,121,'_download_limit','-1'),(2139,121,'_download_expiry','-1'),(2140,121,'_stock',''),(2141,121,'_stock_status','instock'),(2142,121,'_wc_average_rating','0'),(2143,121,'_wc_review_count','0'),(2144,121,'attribute_pa_size','21'),(2145,121,'attribute_pa_color','silver'),(2146,121,'_product_version','5.4.1'),(2147,121,'_regular_price','24.99'),(2148,121,'_thumbnail_id','0'),(2149,121,'_price','17.99'),(2150,121,'_sale_price','17.99'),(2151,122,'_variation_description',''),(2152,122,'total_sales','0'),(2153,122,'_tax_status','taxable'),(2154,122,'_tax_class','parent'),(2155,122,'_manage_stock','no'),(2156,122,'_backorders','no'),(2157,122,'_sold_individually','no'),(2158,122,'_virtual','no'),(2159,122,'_downloadable','no'),(2160,122,'_download_limit','-1'),(2161,122,'_download_expiry','-1'),(2162,122,'_stock',''),(2163,122,'_stock_status','instock'),(2164,122,'_wc_average_rating','0'),(2165,122,'_wc_review_count','0'),(2166,122,'attribute_pa_size','33'),(2167,122,'attribute_pa_color','silver'),(2168,122,'_product_version','5.4.1'),(2169,122,'_regular_price','34.99'),(2170,122,'_thumbnail_id','0'),(2171,122,'_price','34.99'),(2172,124,'_variation_description',''),(2173,124,'_regular_price','26.99'),(2174,124,'total_sales','0'),(2175,124,'_tax_status','taxable'),(2176,124,'_tax_class','parent'),(2177,124,'_manage_stock','no'),(2178,124,'_backorders','no'),(2179,124,'_sold_individually','no'),(2180,124,'_weight','0.6'),(2181,124,'_length','5'),(2182,124,'_width','8'),(2183,124,'_height','15'),(2184,124,'_virtual','no'),(2185,124,'_downloadable','no'),(2186,124,'_download_limit','-1'),(2187,124,'_download_expiry','-1'),(2188,124,'_thumbnail_id','77'),(2189,124,'_stock',''),(2190,124,'_stock_status','instock'),(2191,124,'_wc_average_rating','0'),(2192,124,'_wc_review_count','0'),(2193,124,'attribute_pa_color','black'),(2194,124,'_price','26.99'),(2195,124,'_product_version','5.4.1'),(2196,125,'_variation_description',''),(2197,125,'_regular_price','32.99'),(2198,125,'total_sales','0'),(2199,125,'_tax_status','taxable'),(2200,125,'_tax_class','parent'),(2201,125,'_manage_stock','no'),(2202,125,'_backorders','no'),(2203,125,'_sold_individually','no'),(2204,125,'_weight','0.6'),(2205,125,'_length','5'),(2206,125,'_width','8'),(2207,125,'_height','15'),(2208,125,'_virtual','no'),(2209,125,'_downloadable','no'),(2210,125,'_download_limit','-1'),(2211,125,'_download_expiry','-1'),(2212,125,'_thumbnail_id','76'),(2213,125,'_stock',''),(2214,125,'_stock_status','instock'),(2215,125,'_wc_average_rating','0'),(2216,125,'_wc_review_count','0'),(2217,125,'attribute_pa_color','blue'),(2218,125,'_price','32.99'),(2219,125,'_product_version','5.4.1'),(2220,127,'_variation_description',''),(2221,127,'_regular_price','24.99'),(2222,127,'total_sales','0'),(2223,127,'_tax_status','taxable'),(2224,127,'_tax_class','parent'),(2225,127,'_manage_stock','no'),(2226,127,'_backorders','no'),(2227,127,'_sold_individually','no'),(2228,127,'_virtual','no'),(2229,127,'_downloadable','no'),(2230,127,'_download_limit','-1'),(2231,127,'_download_expiry','-1'),(2232,127,'_thumbnail_id','0'),(2233,127,'_stock',''),(2234,127,'_stock_status','instock'),(2235,127,'_wc_average_rating','0'),(2236,127,'_wc_review_count','0'),(2237,127,'attribute_pa_color','black'),(2238,127,'attribute_pa_size','21'),(2239,127,'_price','24.99'),(2240,127,'_product_version','5.4.1'),(2241,128,'_variation_description',''),(2242,128,'_regular_price','34.99'),(2243,128,'total_sales','0'),(2244,128,'_tax_status','taxable'),(2245,128,'_tax_class','parent'),(2246,128,'_manage_stock','no'),(2247,128,'_backorders','no'),(2248,128,'_sold_individually','no'),(2249,128,'_virtual','no'),(2250,128,'_downloadable','no'),(2251,128,'_download_limit','-1'),(2252,128,'_download_expiry','-1'),(2253,128,'_thumbnail_id','0'),(2254,128,'_stock',''),(2255,128,'_stock_status','instock'),(2256,128,'_wc_average_rating','0'),(2257,128,'_wc_review_count','0'),(2258,128,'attribute_pa_color','black'),(2259,128,'attribute_pa_size','33'),(2260,128,'_price','34.99'),(2261,128,'_product_version','5.4.1'),(2262,129,'_variation_description',''),(2263,129,'_regular_price','24.99'),(2264,129,'total_sales','0'),(2265,129,'_tax_status','taxable'),(2266,129,'_tax_class','parent'),(2267,129,'_manage_stock','no'),(2268,129,'_backorders','no'),(2269,129,'_sold_individually','no'),(2270,129,'_virtual','no'),(2271,129,'_downloadable','no'),(2272,129,'_download_limit','-1'),(2273,129,'_download_expiry','-1'),(2274,129,'_thumbnail_id','0'),(2275,129,'_stock',''),(2276,129,'_stock_status','instock'),(2277,129,'_wc_average_rating','0'),(2278,129,'_wc_review_count','0'),(2279,129,'attribute_pa_color','red'),(2280,129,'attribute_pa_size','21'),(2281,129,'_price','24.99'),(2282,129,'_product_version','5.4.1'),(2283,143,'inline_featured_image','0'),(2284,143,'total_sales','0'),(2285,143,'_tax_status','taxable'),(2286,143,'_tax_class',''),(2287,143,'_manage_stock','no'),(2288,143,'_backorders','no'),(2289,143,'_sold_individually','no'),(2290,143,'_virtual','no'),(2291,143,'_downloadable','no'),(2292,143,'_download_limit','-1'),(2293,143,'_download_expiry','-1'),(2294,143,'_stock',''),(2295,143,'_stock_status','outofstock'),(2296,143,'_wc_average_rating','0'),(2297,143,'_wc_review_count','0'),(2298,143,'_product_attributes','a:1:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(2299,143,'_product_version','5.5.2'),(2300,143,'_price','1.99'),(2301,143,'_thumbnail_id','1937'),(2302,143,'_sku','FM999'),(2303,143,'_product_image_gallery','1938,1939'),(2304,143,'title',''),(2305,143,'_title','field_595f05995871b'),(2306,143,'subtitle',''),(2307,143,'_subtitle','field_595f06045871c'),(2308,143,'titlebarLayout','default'),(2309,143,'_titlebarLayout','field_59fa9e15663bf'),(2310,143,'titlebarAlign','default'),(2311,143,'_titlebarAlign','field_59fa9ed623c88'),(2312,143,'sidebarPosition','default'),(2313,143,'_sidebarPosition','field_595f06285871e'),(2314,143,'sidebar','default'),(2315,143,'_sidebar','field_595f06905871f'),(2316,143,'headerStyles','default'),(2317,143,'_headerStyles','field_60daebf1237b6'),(2318,143,'rs_page_bg_color',''),(2319,143,'slide_template',''),(2320,149,'inline_featured_image','0'),(2321,149,'_sku','WC-712-1-1'),(2322,149,'total_sales','0'),(2323,149,'_tax_status','taxable'),(2324,149,'_tax_class',''),(2325,149,'_manage_stock','no'),(2326,149,'_backorders','no'),(2327,149,'_sold_individually','no'),(2328,149,'_weight','8'),(2329,149,'_length','100'),(2330,149,'_width','120'),(2331,149,'_height','75'),(2332,149,'_virtual','no'),(2333,149,'_downloadable','no'),(2334,149,'_product_image_gallery','1927,1929'),(2335,149,'_download_limit','-1'),(2336,149,'_download_expiry','-1'),(2337,149,'_thumbnail_id','1928'),(2338,149,'_stock',''),(2339,149,'_stock_status','outofstock'),(2340,149,'_wc_average_rating','0'),(2341,149,'_wc_review_count','0'),(2342,149,'_product_attributes','a:2:{s:8:\"pa_color\";a:6:{s:4:\"name\";s:8:\"pa_color\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}s:7:\"pa_size\";a:6:{s:4:\"name\";s:7:\"pa_size\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(2343,149,'_product_version','5.5.2'),(2344,149,'title',''),(2345,149,'_title','field_595f05995871b'),(2346,149,'subtitle',''),(2347,149,'_subtitle','field_595f06045871c'),(2348,149,'titlebarLayout','default'),(2349,149,'_titlebarLayout','field_59fa9e15663bf'),(2350,149,'titlebarAlign','default'),(2351,149,'_titlebarAlign','field_59fa9ed623c88'),(2352,149,'sidebarPosition','default'),(2353,149,'_sidebarPosition','field_595f06285871e'),(2354,149,'sidebar','default'),(2355,149,'_sidebar','field_595f06905871f'),(2356,149,'headerStyles','default'),(2357,149,'_headerStyles','field_60daebf1237b6'),(2358,149,'rs_page_bg_color',''),(2359,149,'_price','24.99'),(2360,149,'_price','34.99'),(2361,149,'slide_template',''),(2362,156,'inline_featured_image','0'),(2363,156,'_thumbnail_id','1930'),(2364,156,'_regular_price','19.99'),(2365,156,'total_sales','0'),(2366,156,'_tax_status','taxable'),(2367,156,'_tax_class',''),(2368,156,'_manage_stock','no'),(2369,156,'_backorders','no'),(2370,156,'_sold_individually','no'),(2371,156,'_virtual','no'),(2372,156,'_downloadable','no'),(2373,156,'_download_limit','-1'),(2374,156,'_download_expiry','-1'),(2375,156,'_stock',''),(2376,156,'_stock_status','instock'),(2377,156,'_wc_average_rating','3.50'),(2378,156,'_wc_review_count','2'),(2379,156,'_product_version','6.5.1'),(2380,156,'_price','19.99'),(2381,156,'_product_image_gallery','1932,1931'),(2382,156,'title',''),(2383,156,'_title','field_595f05995871b'),(2384,156,'subtitle',''),(2385,156,'_subtitle','field_595f06045871c'),(2386,156,'titlebarLayout','default'),(2387,156,'_titlebarLayout','field_59fa9e15663bf'),(2388,156,'titlebarAlign','default'),(2389,156,'_titlebarAlign','field_59fa9ed623c88'),(2390,156,'sidebarPosition','default'),(2391,156,'_sidebarPosition','field_595f06285871e'),(2392,156,'sidebar','default'),(2393,156,'_sidebar','field_595f06905871f'),(2394,156,'headerStyles','default'),(2395,156,'_headerStyles','field_60daebf1237b6'),(2396,156,'rs_page_bg_color',''),(2397,156,'_wc_rating_count','a:2:{i:2;i:1;i:5;i:1;}'),(2398,156,'slide_template',''),(2399,163,'inline_featured_image','0'),(2400,163,'_regular_price','15.99'),(2401,163,'total_sales','0'),(2402,163,'_tax_status','taxable'),(2403,163,'_tax_class',''),(2404,163,'_manage_stock','no'),(2405,163,'_backorders','no'),(2406,163,'_sold_individually','no'),(2407,163,'_virtual','no'),(2408,163,'_downloadable','no'),(2409,163,'_product_image_gallery','1941'),(2410,163,'_download_limit','-1'),(2411,163,'_download_expiry','-1'),(2412,163,'_thumbnail_id','1940'),(2413,163,'_stock',''),(2414,163,'_stock_status','instock'),(2415,163,'_wc_average_rating','0'),(2416,163,'_wc_review_count','0'),(2417,163,'_product_version','5.5.2'),(2418,163,'_price','11.99'),(2419,163,'title',''),(2420,163,'_title','field_595f05995871b'),(2421,163,'subtitle',''),(2422,163,'_subtitle','field_595f06045871c'),(2423,163,'titlebarLayout','default'),(2424,163,'_titlebarLayout','field_59fa9e15663bf'),(2425,163,'titlebarAlign','default'),(2426,163,'_titlebarAlign','field_59fa9ed623c88'),(2427,163,'sidebarPosition','default'),(2428,163,'_sidebarPosition','field_595f06285871e'),(2429,163,'sidebar','default'),(2430,163,'_sidebar','field_595f06905871f'),(2431,163,'headerStyles','default'),(2432,163,'_headerStyles','field_60daebf1237b6'),(2433,163,'rs_page_bg_color',''),(2434,163,'_sale_price','11.99'),(2435,163,'slide_template',''),(2436,174,'inline_featured_image','0'),(2437,174,'total_sales','0'),(2438,174,'_tax_status','taxable'),(2439,174,'_tax_class',''),(2440,174,'_manage_stock','no'),(2441,174,'_backorders','no'),(2442,174,'_sold_individually','no'),(2443,174,'_virtual','no'),(2444,174,'_downloadable','no'),(2445,174,'_download_limit','-1'),(2446,174,'_download_expiry','-1'),(2447,174,'_stock',''),(2448,174,'_stock_status','outofstock'),(2449,174,'_wc_average_rating','0'),(2450,174,'_wc_review_count','0'),(2451,174,'_product_attributes','a:1:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:21:\"100mg | 200mg | 300mg\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}'),(2452,174,'_product_version','5.5.2'),(2453,174,'_price','11.99'),(2454,174,'_price','15.99'),(2455,174,'_price','19.99'),(2456,174,'_thumbnail_id','1933'),(2457,174,'_regular_price','19.99'),(2458,174,'_sale_price','11.99'),(2459,174,'_product_image_gallery','1934'),(2460,174,'title',''),(2461,174,'_title','field_595f05995871b'),(2462,174,'subtitle',''),(2463,174,'_subtitle','field_595f06045871c'),(2464,174,'titlebarLayout','default'),(2465,174,'_titlebarLayout','field_59fa9e15663bf'),(2466,174,'titlebarAlign','default'),(2467,174,'_titlebarAlign','field_59fa9ed623c88'),(2468,174,'sidebarPosition','default'),(2469,174,'_sidebarPosition','field_595f06285871e'),(2470,174,'sidebar','default'),(2471,174,'_sidebar','field_595f06905871f'),(2472,174,'headerStyles','default'),(2473,174,'_headerStyles','field_60daebf1237b6'),(2474,174,'rs_page_bg_color',''),(2475,174,'slide_template',''),(2476,189,'inline_featured_image','0'),(2477,189,'_thumbnail_id','1919'),(2478,189,'_regular_price','9.99'),(2479,189,'_sale_price','7.99'),(2480,189,'total_sales','0'),(2481,189,'_tax_status','taxable'),(2482,189,'_tax_class',''),(2483,189,'_manage_stock','no'),(2484,189,'_backorders','no'),(2485,189,'_sold_individually','no'),(2486,189,'_virtual','no'),(2487,189,'_downloadable','no'),(2488,189,'_download_limit','-1'),(2489,189,'_download_expiry','-1'),(2490,189,'_stock',''),(2491,189,'_stock_status','instock'),(2492,189,'_wc_average_rating','5.00'),(2493,189,'_wc_review_count','2'),(2494,189,'_product_version','6.5.1'),(2495,189,'_price','7.99'),(2496,189,'_product_image_gallery','1920'),(2497,189,'title',''),(2498,189,'_title','field_595f05995871b'),(2499,189,'subtitle',''),(2500,189,'_subtitle','field_595f06045871c'),(2501,189,'titlebarLayout','default'),(2502,189,'_titlebarLayout','field_59fa9e15663bf'),(2503,189,'titlebarAlign','default'),(2504,189,'_titlebarAlign','field_59fa9ed623c88'),(2505,189,'sidebarPosition','default'),(2506,189,'_sidebarPosition','field_595f06285871e'),(2507,189,'sidebar','default'),(2508,189,'_sidebar','field_595f06905871f'),(2509,189,'headerStyles','default'),(2510,189,'_headerStyles','field_60daebf1237b6'),(2511,189,'rs_page_bg_color',''),(2512,189,'_wc_rating_count','a:1:{i:5;i:2;}'),(2513,189,'_wp_old_slug','hand-sanitizer-soothing-gel-fresh-scent'),(2514,189,'slide_template',''),(2515,192,'inline_featured_image','0'),(2516,192,'total_sales','0'),(2517,192,'_tax_status','taxable'),(2518,192,'_tax_class',''),(2519,192,'_manage_stock','no'),(2520,192,'_backorders','no'),(2521,192,'_sold_individually','no'),(2522,192,'_virtual','no'),(2523,192,'_downloadable','no'),(2524,192,'_download_limit','-1'),(2525,192,'_download_expiry','-1'),(2526,192,'_stock',''),(2527,192,'_stock_status','outofstock'),(2528,192,'_wc_average_rating','0'),(2529,192,'_wc_review_count','0'),(2530,192,'_product_attributes','a:1:{s:4:\"size\";a:6:{s:4:\"name\";s:4:\"Size\";s:5:\"value\";s:18:\"20ml | 40ml | 60ml\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}'),(2531,192,'_product_version','5.5.2'),(2532,192,'_thumbnail_id','1914'),(2533,192,'_product_image_gallery','1915'),(2534,192,'title',''),(2535,192,'_title','field_595f05995871b'),(2536,192,'subtitle',''),(2537,192,'_subtitle','field_595f06045871c'),(2538,192,'titlebarLayout','default'),(2539,192,'_titlebarLayout','field_59fa9e15663bf'),(2540,192,'titlebarAlign','default'),(2541,192,'_titlebarAlign','field_59fa9ed623c88'),(2542,192,'sidebarPosition','default'),(2543,192,'_sidebarPosition','field_595f06285871e'),(2544,192,'sidebar','default'),(2545,192,'_sidebar','field_595f06905871f'),(2546,192,'headerStyles','default'),(2547,192,'_headerStyles','field_60daebf1237b6'),(2548,192,'rs_page_bg_color',''),(2549,192,'_price','1.99'),(2550,192,'_price','2.99'),(2551,192,'_price','3.99'),(2552,192,'_regular_price','5.99'),(2553,192,'_sale_price','1.99'),(2554,192,'slide_template',''),(2555,1950,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(2556,1950,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <wordpress@cli.21lab.co>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(2557,1950,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <wordpress@cli.21lab.co>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(2558,1950,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(2559,1950,'_locale','en_US'),(2560,17,'_form','<div class=\"ctform\">\n    <p class=\"form-row\">\n        <label>Name *</label>\n        [text* text-209 placeholder \"How can we call you?\"]\n    </p>\n    <p class=\"form-row\">\n        <label>Email *</label>\n        [email* email-14 placeholder \"What Address Should I Send a Reply to?\"]\n    </p>\n    <p class=\"form-row note\">\n        <label>Message Text</label>\n        [textarea textarea-988 placeholder \"White Something…\"]\n    </p>\n    <p>\n        [submit \"Send a Message\"]\n    </p>\n    <p>\n        [acceptance acceptance-133 default:on] I have read and accept the Privacy Policy [/acceptance]\n    </p>\n</div>'),(2561,17,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <wordpress@cli.21lab.co>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2562,17,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <wordpress@cli.21lab.co>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2563,17,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2564,17,'_locale','en_US'),(2565,17,'_additional_settings',''),(2566,17,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(2567,130,'_variation_description',''),(2568,130,'_regular_price','34.99'),(2569,130,'total_sales','0'),(2570,130,'_tax_status','taxable'),(2571,130,'_tax_class','parent'),(2572,130,'_manage_stock','no'),(2573,130,'_backorders','no'),(2574,130,'_sold_individually','no'),(2575,130,'_virtual','no'),(2576,130,'_downloadable','no'),(2577,130,'_download_limit','-1'),(2578,130,'_download_expiry','-1'),(2579,130,'_thumbnail_id','0'),(2580,130,'_stock',''),(2581,130,'_stock_status','instock'),(2582,130,'_wc_average_rating','0'),(2583,130,'_wc_review_count','0'),(2584,130,'attribute_pa_color','red'),(2585,130,'attribute_pa_size','33'),(2586,130,'_price','34.99'),(2587,130,'_product_version','5.4.1'),(2588,131,'_variation_description',''),(2589,131,'_regular_price','24.99'),(2590,131,'total_sales','0'),(2591,131,'_tax_status','taxable'),(2592,131,'_tax_class','parent'),(2593,131,'_manage_stock','no'),(2594,131,'_backorders','no'),(2595,131,'_sold_individually','no'),(2596,131,'_virtual','no'),(2597,131,'_downloadable','no'),(2598,131,'_download_limit','-1'),(2599,131,'_download_expiry','-1'),(2600,131,'_thumbnail_id','0'),(2601,131,'_stock',''),(2602,131,'_stock_status','instock'),(2603,131,'_wc_average_rating','0'),(2604,131,'_wc_review_count','0'),(2605,131,'attribute_pa_color','silver'),(2606,131,'attribute_pa_size','21'),(2607,131,'_price','24.99'),(2608,131,'_product_version','5.4.1'),(2609,132,'_variation_description',''),(2610,132,'_regular_price','34.99'),(2611,132,'total_sales','0'),(2612,132,'_tax_status','taxable'),(2613,132,'_tax_class','parent'),(2614,132,'_manage_stock','no'),(2615,132,'_backorders','no'),(2616,132,'_sold_individually','no'),(2617,132,'_virtual','no'),(2618,132,'_downloadable','no'),(2619,132,'_download_limit','-1'),(2620,132,'_download_expiry','-1'),(2621,132,'_thumbnail_id','0'),(2622,132,'_stock',''),(2623,132,'_stock_status','instock'),(2624,132,'_wc_average_rating','0'),(2625,132,'_wc_review_count','0'),(2626,132,'attribute_pa_color','silver'),(2627,132,'attribute_pa_size','33'),(2628,132,'_price','34.99'),(2629,132,'_product_version','5.4.1'),(2630,147,'_variation_description',''),(2631,147,'total_sales','0'),(2632,147,'_tax_status','taxable'),(2633,147,'_tax_class','parent'),(2634,147,'_manage_stock','no'),(2635,147,'_backorders','no'),(2636,147,'_sold_individually','no'),(2637,147,'_virtual','no'),(2638,147,'_downloadable','no'),(2639,147,'_download_limit','-1'),(2640,147,'_download_expiry','-1'),(2641,147,'_stock',''),(2642,147,'_stock_status','instock'),(2643,147,'_wc_average_rating','0'),(2644,147,'_wc_review_count','0'),(2645,147,'attribute_pa_color','black'),(2646,147,'_product_version','5.4.1'),(2647,147,'_regular_price','1.99'),(2648,147,'_price','1.99'),(2649,148,'_variation_description',''),(2650,148,'total_sales','0'),(2651,148,'_tax_status','taxable'),(2652,148,'_tax_class','parent'),(2653,148,'_manage_stock','no'),(2654,148,'_backorders','no'),(2655,148,'_sold_individually','no'),(2656,148,'_virtual','no'),(2657,148,'_downloadable','no'),(2658,148,'_download_limit','-1'),(2659,148,'_download_expiry','-1'),(2660,148,'_stock',''),(2661,148,'_stock_status','instock'),(2662,148,'_wc_average_rating','0'),(2663,148,'_wc_review_count','0'),(2664,148,'attribute_pa_color','blue'),(2665,148,'_product_version','5.4.1'),(2666,148,'_regular_price','1.99'),(2667,148,'_price','1.99'),(2668,150,'_variation_description',''),(2669,150,'_regular_price','24.99'),(2670,150,'total_sales','0'),(2671,150,'_tax_status','taxable'),(2672,150,'_tax_class','parent'),(2673,150,'_manage_stock','no'),(2674,150,'_backorders','no'),(2675,150,'_sold_individually','no'),(2676,150,'_virtual','no'),(2677,150,'_downloadable','no'),(2678,150,'_download_limit','-1'),(2679,150,'_download_expiry','-1'),(2680,150,'_thumbnail_id','0'),(2681,150,'_stock',''),(2682,150,'_stock_status','instock'),(2683,150,'_wc_average_rating','0'),(2684,150,'_wc_review_count','0'),(2685,150,'attribute_pa_color','black'),(2686,150,'attribute_pa_size','21'),(2687,150,'_price','24.99'),(2688,150,'_product_version','5.4.1'),(2689,151,'_variation_description',''),(2690,151,'_regular_price','34.99'),(2691,151,'total_sales','0'),(2692,151,'_tax_status','taxable'),(2693,151,'_tax_class','parent'),(2694,151,'_manage_stock','no'),(2695,151,'_backorders','no'),(2696,151,'_sold_individually','no'),(2697,151,'_virtual','no'),(2698,151,'_downloadable','no'),(2699,151,'_download_limit','-1'),(2700,151,'_download_expiry','-1'),(2701,151,'_thumbnail_id','0'),(2702,151,'_stock',''),(2703,151,'_stock_status','instock'),(2704,151,'_wc_average_rating','0'),(2705,151,'_wc_review_count','0'),(2706,151,'attribute_pa_color','black'),(2707,151,'attribute_pa_size','33'),(2708,151,'_price','34.99'),(2709,151,'_product_version','5.4.1'),(2710,152,'_variation_description',''),(2711,152,'_regular_price','24.99'),(2712,152,'total_sales','0'),(2713,152,'_tax_status','taxable'),(2714,152,'_tax_class','parent'),(2715,152,'_manage_stock','no'),(2716,152,'_backorders','no'),(2717,152,'_sold_individually','no'),(2718,152,'_virtual','no'),(2719,152,'_downloadable','no'),(2720,152,'_download_limit','-1'),(2721,152,'_download_expiry','-1'),(2722,152,'_thumbnail_id','0'),(2723,152,'_stock',''),(2724,152,'_stock_status','instock'),(2725,152,'_wc_average_rating','0'),(2726,152,'_wc_review_count','0'),(2727,152,'attribute_pa_color','red'),(2728,152,'attribute_pa_size','21'),(2729,152,'_price','24.99'),(2730,152,'_product_version','5.4.1'),(2731,153,'_variation_description',''),(2732,153,'_regular_price','34.99'),(2733,153,'total_sales','0'),(2734,153,'_tax_status','taxable'),(2735,153,'_tax_class','parent'),(2736,153,'_manage_stock','no'),(2737,153,'_backorders','no'),(2738,153,'_sold_individually','no'),(2739,153,'_virtual','no'),(2740,153,'_downloadable','no'),(2741,153,'_download_limit','-1'),(2742,153,'_download_expiry','-1'),(2743,153,'_thumbnail_id','0'),(2744,153,'_stock',''),(2745,153,'_stock_status','instock'),(2746,153,'_wc_average_rating','0'),(2747,153,'_wc_review_count','0'),(2748,153,'attribute_pa_color','red'),(2749,153,'attribute_pa_size','33'),(2750,153,'_price','34.99'),(2751,153,'_product_version','5.4.1'),(2752,154,'_variation_description',''),(2753,154,'_regular_price','24.99'),(2754,154,'total_sales','0'),(2755,154,'_tax_status','taxable'),(2756,154,'_tax_class','parent'),(2757,154,'_manage_stock','no'),(2758,154,'_backorders','no'),(2759,154,'_sold_individually','no'),(2760,154,'_virtual','no'),(2761,154,'_downloadable','no'),(2762,154,'_download_limit','-1'),(2763,154,'_download_expiry','-1'),(2764,154,'_thumbnail_id','0'),(2765,154,'_stock',''),(2766,154,'_stock_status','instock'),(2767,154,'_wc_average_rating','0'),(2768,154,'_wc_review_count','0'),(2769,154,'attribute_pa_color','silver'),(2770,154,'attribute_pa_size','21'),(2771,154,'_price','24.99'),(2772,154,'_product_version','5.4.1'),(2773,155,'_variation_description',''),(2774,155,'_regular_price','34.99'),(2775,155,'total_sales','0'),(2776,155,'_tax_status','taxable'),(2777,155,'_tax_class','parent'),(2778,155,'_manage_stock','no'),(2779,155,'_backorders','no'),(2780,155,'_sold_individually','no'),(2781,155,'_virtual','no'),(2782,155,'_downloadable','no'),(2783,155,'_download_limit','-1'),(2784,155,'_download_expiry','-1'),(2785,155,'_thumbnail_id','0'),(2786,155,'_stock',''),(2787,155,'_stock_status','instock'),(2788,155,'_wc_average_rating','0'),(2789,155,'_wc_review_count','0'),(2790,155,'attribute_pa_color','silver'),(2791,155,'attribute_pa_size','33'),(2792,155,'_price','34.99'),(2793,155,'_product_version','5.4.1'),(2794,177,'_variation_description',''),(2795,177,'total_sales','0'),(2796,177,'_tax_status','taxable'),(2797,177,'_tax_class','parent'),(2798,177,'_manage_stock','no'),(2799,177,'_backorders','no'),(2800,177,'_sold_individually','no'),(2801,177,'_virtual','no'),(2802,177,'_downloadable','no'),(2803,177,'_download_limit','-1'),(2804,177,'_download_expiry','-1'),(2805,177,'_stock',''),(2806,177,'_stock_status','instock'),(2807,177,'_wc_average_rating','0'),(2808,177,'_wc_review_count','0'),(2809,177,'attribute_size','100mg'),(2810,177,'_product_version','5.4.1'),(2811,177,'_regular_price','11.99'),(2812,177,'_price','11.99'),(2813,178,'_variation_description',''),(2814,178,'total_sales','0'),(2815,178,'_tax_status','taxable'),(2816,178,'_tax_class','parent'),(2817,178,'_manage_stock','no'),(2818,178,'_backorders','no'),(2819,178,'_sold_individually','no'),(2820,178,'_virtual','no'),(2821,178,'_downloadable','no'),(2822,178,'_download_limit','-1'),(2823,178,'_download_expiry','-1'),(2824,178,'_stock',''),(2825,178,'_stock_status','instock'),(2826,178,'_wc_average_rating','0'),(2827,178,'_wc_review_count','0'),(2828,178,'attribute_size','200mg'),(2829,178,'_product_version','5.4.1'),(2830,178,'_regular_price','15.99'),(2831,178,'_price','15.99'),(2832,179,'_variation_description',''),(2833,179,'total_sales','0'),(2834,179,'_tax_status','taxable'),(2835,179,'_tax_class','parent'),(2836,179,'_manage_stock','no'),(2837,179,'_backorders','no'),(2838,179,'_sold_individually','no'),(2839,179,'_virtual','no'),(2840,179,'_downloadable','no'),(2841,179,'_download_limit','-1'),(2842,179,'_download_expiry','-1'),(2843,179,'_stock',''),(2844,179,'_stock_status','instock'),(2845,179,'_wc_average_rating','0'),(2846,179,'_wc_review_count','0'),(2847,179,'attribute_size','300mg'),(2848,179,'_product_version','5.4.1'),(2849,179,'_regular_price','19.99'),(2850,179,'_price','19.99'),(2851,196,'_variation_description',''),(2852,196,'total_sales','0'),(2853,196,'_tax_status','taxable'),(2854,196,'_tax_class','parent'),(2855,196,'_manage_stock','no'),(2856,196,'_backorders','no'),(2857,196,'_sold_individually','no'),(2858,196,'_virtual','no'),(2859,196,'_downloadable','no'),(2860,196,'_download_limit','-1'),(2861,196,'_download_expiry','-1'),(2862,196,'_stock',''),(2863,196,'_stock_status','instock'),(2864,196,'_wc_average_rating','0'),(2865,196,'_wc_review_count','0'),(2866,196,'attribute_size','20ml'),(2867,196,'_product_version','5.4.1'),(2868,196,'_regular_price','3.99'),(2869,196,'_sale_price','1.99'),(2870,196,'_thumbnail_id','0'),(2871,196,'_price','1.99'),(2872,197,'_variation_description',''),(2873,197,'total_sales','0'),(2874,197,'_tax_status','taxable'),(2875,197,'_tax_class','parent'),(2876,197,'_manage_stock','no'),(2877,197,'_backorders','no'),(2878,197,'_sold_individually','no'),(2879,197,'_virtual','no'),(2880,197,'_downloadable','no'),(2881,197,'_download_limit','-1'),(2882,197,'_download_expiry','-1'),(2883,197,'_stock',''),(2884,197,'_stock_status','instock'),(2885,197,'_wc_average_rating','0'),(2886,197,'_wc_review_count','0'),(2887,197,'attribute_size','40ml'),(2888,197,'_product_version','5.4.1'),(2889,197,'_regular_price','5.99'),(2890,197,'_sale_price','2.99'),(2891,197,'_thumbnail_id','0'),(2892,197,'_price','2.99'),(2893,198,'_variation_description',''),(2894,198,'total_sales','0'),(2895,198,'_tax_status','taxable'),(2896,198,'_tax_class','parent'),(2897,198,'_manage_stock','no'),(2898,198,'_backorders','no'),(2899,198,'_sold_individually','no'),(2900,198,'_virtual','no'),(2901,198,'_downloadable','no'),(2902,198,'_download_limit','-1'),(2903,198,'_download_expiry','-1'),(2904,198,'_stock',''),(2905,198,'_stock_status','instock'),(2906,198,'_wc_average_rating','0'),(2907,198,'_wc_review_count','0'),(2908,198,'attribute_size','60ml'),(2909,198,'_product_version','5.4.1'),(2910,198,'_regular_price','5.99'),(2911,198,'_sale_price','3.99'),(2912,198,'_thumbnail_id','0'),(2913,198,'_price','3.99'),(2914,701,'_form','<div class=\"rqform\">\n<p class=\"form-row\">[text* text-588 placeholder \"Your Name *\"]</p>\n<p class=\"form-row\">[tel* tel-706 placeholder \"Contact No *\"]</p>\n<p class=\"form-row radio\">\n   <label>Your Availability:</label>\n   [radio radio-538 use_label_element default:1 \"AM\" \"PM\"]\n</p>\n<p>[submit \"Request Now\"]</p>\n<p>[acceptance acceptance-269 default:on] I have read and accept the Privacy Policy [/acceptance]</p>\n</div>'),(2915,701,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <wordpress@cli.21lab.co>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2916,701,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:38:\"[_site_title] <wordpress@cli.21lab.co>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2917,701,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2918,701,'_additional_settings',''),(2919,701,'_locale','en_US'),(2920,701,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(2921,1951,'_wp_page_template','tmpl/template-fullwidth.php'),(2922,1951,'_elementor_edit_mode','builder'),(2923,1951,'_elementor_template_type','wp-page'),(2924,1951,'_elementor_version','3.4.0'),(2925,1951,'_elementor_data','[{\"id\":\"3b60814\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\"},\"elements\":[{\"id\":\"90235d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"133d4d7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage\",\"shortcode\":\"[rev_slider alias=\\\"home\\\" slidertitle=\\\"Homepage\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b234b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"fe526c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2706e54\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"12eca54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2c38d03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2ac7fe2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fc1e17f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7d5dcd5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"712f91e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"1f31882\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"036e3b0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"654f7b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d5d7b34\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ae61499\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a3363b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d857a9a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36acca9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5547657\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e98ce51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"63e407b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f56be3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74b4f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bf41f06\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"d9371ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"47686f6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"2179c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"d681069\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c250e42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d128124\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3edacc5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"8ac8ccc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"3fd43b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"670139a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team of highly trained doctors\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"145f8c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c No matter what your concern, your first stop is one of our accessible, expert health professionals. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4e422e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7b4b51\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"e63bb2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1086b04\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e7d99c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5052934\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"ceeb48f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please read through their profiles to learn more.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"76b951d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"41da73f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get To Know Our Doctors\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5be9d62\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a5c928e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\"},\"elements\":[{\"id\":\"b62412a\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"a75a933\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"c109474\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"a9af81b\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":300},\"elements\":[{\"id\":\"ff6087b\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"49ae246\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"209728b\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"d7c27ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":500},\"elements\":[{\"id\":\"95e10fd\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36893f3\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"95bae92\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fd2b3ab\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button white has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imgb1-13.jpeg\",\"id\":1769,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32a710b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5b42d52\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cf70cde\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"cb0636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"35119c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"864d9ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"67fa01a\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e23a65f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1933708\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dfc0e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f76ec98\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"00d8c3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"38b5801\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2c38144\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"317bd78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9fcd9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"dda69ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5b56dad\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43ac132\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e08dffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"1ed6477\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4e92856\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"03e748a\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"efdebd4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"24b9d19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"7d16f37\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"8c442c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.664,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7c5ec9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4b7e0bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"844fc3a\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dae002e\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Highlights:\",\"taxonomy\":\"category\",\"classes\":\"\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e690368\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de99fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e577458\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"animation\":\"none\"},\"elements\":[{\"id\":\"74a6af2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d1dc560\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c5cfe3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a330503\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7171997\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d82eba1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9ce9166\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"afbb99d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6c40dcb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"40ffa83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a239ce0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61ceacb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"797deb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5aa8368\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"83fca94\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"12426d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"4d7cb9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are some helpful links to get you answers faster.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d2672f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"2d4b9b6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bf9e968\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"34ebe14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"b2f7687\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EAE5ED\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"49785f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"ddc1404\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F4DDDD\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"86a04c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a3bbc5f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a0eac23\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a148c03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4be19\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"1a9952e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"dd30121\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f633686\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"ea6af18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9072e11\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b1d0359\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed170b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21198dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c97f5b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4c7ed34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"138c952\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ef04736\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2d0d5fa\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"ca49481\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0022a33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"345847a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9371b2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0c14b96\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"e1eef5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"c6f32b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"35a2fb6\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"855b043\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"64b37d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"934224e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e6bfb62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ca6d374\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"877aba6\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"03390ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c00e288\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2926,1951,'_elementor_page_assets','a:0:{}'),(2927,1951,'_elementor_controls_usage','a:18:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:55;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:55;s:21:\"space_between_widgets\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:7;s:11:\"hide_tablet\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:13;s:15:\"animation_delay\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:8:\"html_tag\";i:25;s:13:\"content_width\";i:29;s:3:\"gap\";i:5;s:18:\"gap_columns_custom\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:14;s:7:\"padding\";i:8;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:10;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:10;s:6:\"weight\";i:4;s:3:\"gap\";i:10;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:15;s:11:\"header_size\";i:12;s:4:\"link\";i:1;s:5:\"align\";i:4;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:6;s:22:\"typography_line_height\";i:6;s:11:\"title_color\";i:2;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:7;s:5:\"align\";i:5;s:4:\"link\";i:6;s:4:\"size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:12:\"_css_classes\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:13:\"border_radius\";i:2;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:4;s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:4;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:5;s:10:\"team_image\";i:5;s:10:\"team_title\";i:5;s:13:\"team_subtitle\";i:5;s:16:\"listItems_groups\";i:5;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:8;s:12:\"text_columns\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:2:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}s:19:\"wp-widget-tag_cloud\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}}'),(2928,1952,'_wp_page_template','tmpl/template-fullwidth.php'),(2929,1952,'_elementor_edit_mode','builder'),(2930,1952,'_elementor_template_type','wp-page'),(2931,1952,'_elementor_version','3.4.0'),(2932,1952,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.33,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.6,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.664,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2933,1952,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2934,1952,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(2935,1953,'_wp_page_template','tmpl/template-fullwidth.php'),(2936,1953,'_elementor_edit_mode','builder'),(2937,1953,'_elementor_template_type','wp-page'),(2938,1953,'_elementor_version','3.4.0'),(2939,1953,'_elementor_data','[{\"id\":\"f5c8c24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"f07671f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e06a05b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"d593b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7cb4615\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ef00595\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"739c5d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c7507d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are some helpful links to get you answers faster.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"32a1695\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"87e6fe6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"76d5b4e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"1a60af3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"b7b6d59\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EAE5ED\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5fc7b46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"caff2c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F4DDDD\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7553a06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a3d0e18\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"98f816f\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-100,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"initial\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"769532d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e2c1217\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9686ea5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":10},\"elements\":[{\"id\":\"5288228\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pin-3-1.svg\",\"id\":1833},\"library\":\"svg\"},\"view\":\"stacked\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"primary_color\":\"#2A2A2A\",\"_animation\":\"bounce\"},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"830215e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":80,\"animation\":\"none\"},\"elements\":[{\"id\":\"b10eca0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Information\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a6c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>How to Find us<\\/strong><\\/p><p>CiLab Medical Clinic is located at: 2307 Beverley Rd Brooklyn, New York 11226 United States.<\\/p>\",\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f0b1052\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d5225a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Access to Parking<\\/strong><\\/p><p>The CiLab Medical Clinic car park has been relocated to the north of the building.<\\/p>\",\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3ae70\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4f89656\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Opening Hours<\\/strong><\\/p><p>Open 7 days 8:0AM to 8:00PM. Public Holidays 9:00AM to 5:00PM.<\\/p>\",\"text_columns\":\"2\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e73617\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9e599fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bb1b32a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"d4497a1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"9e04ac2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bcb1ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send a Message!\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2d7a5e\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"http:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/07\\/face.png\",\"id\":913,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to \\ntelephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"},{\"id\":\"d925017\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"17\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true},{\"id\":\"03771a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"c969a5e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/glb.jpg\",\"id\":1834,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2940,1953,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2941,1953,'_elementor_controls_usage','a:12:{s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:1;s:3:\"gap\";i:4;s:5:\"color\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:12;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:2;s:11:\"hide_tablet\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:15:\"animation_delay\";i:2;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:6;s:8:\"html_tag\";i:3;s:3:\"gap\";i:1;s:18:\"gap_columns_custom\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}s:26:\"section_background_overlay\";a:9:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:27:\"background_overlay_bg_width\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:5:\"align\";i:1;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:1;s:4:\"view\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:3:{s:6:\"editor\";i:3;s:12:\"text_columns\";i:3;s:10:\"column_gap\";i:3;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}}}}'),(2942,1954,'_wp_page_template','tmpl/template-fullwidth.php'),(2943,1954,'_elementor_edit_mode','builder'),(2944,1954,'_elementor_template_type','wp-page'),(2945,1954,'_elementor_version','3.4.0'),(2946,1954,'_elementor_data','[{\"id\":\"2bf19f2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg_ab-scaled-1.jpg\",\"id\":1873,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_b\":\"#029967\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size_mobile\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"200\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"height\":\"full\",\"column_position\":\"stretch\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"01\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"html_tag\":\"div\"},\"elements\":[{\"id\":\"d80ae30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0c9f402\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"overview\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"a26d7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab<br>The <strong>Best<\\/strong> Medical <strong>experts<\\/strong> and<br><strong>qualified<\\/strong> staff\",\"size\":\"xxl\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.33,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"95ce37f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"animation\":\"none\",\"animation_delay\":150},\"elements\":[{\"id\":\"2446c42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"6157a9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":30},\"elements\":[{\"id\":\"f70fef6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Clilab Medical Clinics in US, operate in 3 cities: New York, Los Angeles and San Francisco. These fully-licensed clinics are staffed by well trained and specialised professionals to ensure quality, comprehensive medical care. With over 40 years of experience in providing healthcare service in US, CliLab offers a one stop service for your medical needs.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8b623b4\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/circle-arrow-down.svg\",\"id\":1773},\"library\":\"svg\"},\"_animation\":\"none\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"661fb2d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"d58931b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"5ff0c20\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"119c5d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"a8ac56c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":68,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"dd5e333\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"db23152\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":17.333,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8061102\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce70a60\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b630bf4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8044842\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e8b667a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"e52d246\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"35dc547\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"e9007e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"668e936\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"85dfcda\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"1d66a9a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"21039a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d15218\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"fact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"b0e0356\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"221e561\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"8f35215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"b7c5db0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"a8f7060\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"9a32d17\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2435ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"e626346\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"4a9b2e4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"f14e574\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"7db58d4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"222d555\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"3b7482b\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.6,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"b691f8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"3c5e205\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d923e29\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"bc9b025\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"563d67f\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"026618d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f5bf5f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a5cbe8d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66550bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4916f0d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"value\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"e95b5bd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"6cff6b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"57cd337\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"80d4480\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"4fbfcf7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Core Value\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77bcc99\",\"elType\":\"widget\",\"settings\":{\"title\":\"We seek always to create <br>\\n& deliver value for you.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b9fbd6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our mission<\\/strong><\\/p><p>Our mission is to enhence health and well-being by providing the best total healthcare.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"90aa904\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5c192ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Vision<\\/strong><\\/p><p>Trusted partner for health. A healthy community with quality, affordable healthcare for all.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"226925e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8b8ce65\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Policy<\\/strong><\\/p><p>We practise high standards through an effective quality management system to assure that our services meet.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f520fa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a91d509\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2c5676b\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"d3b2c68\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5fccb21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c98d079\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose CliLab Medical Clinic\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1665936\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many reasons to choose CliLab as your healthcare provider of choice.<br \\/>Choose from one of the options below to find out more:<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77211c8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Integrity and Ethics\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"87f6bf4\"},{\"text\":\"Commitment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/sports-fan.svg\",\"id\":1783},\"library\":\"svg\"},\"_id\":\"e3d2fa6\"},{\"text\":\"Excellence and Awards\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/military-medal.svg\",\"id\":1782},\"library\":\"svg\"},\"_id\":\"3ecc6cb\"},{\"text\":\"Fiscal Soundness\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/c-pulse.svg\",\"id\":1771},\"library\":\"svg\"},\"_id\":\"f6b9f74\"},{\"text\":\"Cultural Competence\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/diamond.svg\",\"id\":1774},\"library\":\"svg\"},\"_id\":\"fd54092\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4d1bea\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b52c6b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6e56a85\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"7f069d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5754e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"515e69b\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"11e8a47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team of highly trained doctors\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26a442c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c We are Proud to have a Team of Dedicated Doctors with varying interests and background \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"707f1a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e406556\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"1a8ef51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35d6199\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"479b44d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"a15de9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e7e2de0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please read through their profiles to learn more.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"70a3726\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"45d21ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get To Know Our Doctors\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49ddf2f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4fa2be8\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\"},\"elements\":[{\"id\":\"252f9c4\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"c3bac55\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"b60568a\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"5670ea4\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"df02a27\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"fb45d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":600},\"elements\":[{\"id\":\"6702768\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"ebbaf2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":800},\"elements\":[{\"id\":\"539d574\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6f96c67\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cba475a\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\"},\"elements\":[{\"id\":\"8b45da5\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"fccae97\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"f393ff0\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"8994070\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"81912df\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"ac86834\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":600},\"elements\":[{\"id\":\"6d2dea8\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"9a028ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":800},\"elements\":[{\"id\":\"cd317a7\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3cf8642\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"01d819a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"48af79c\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button white has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imgb1-13.jpeg\",\"id\":1769,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b474a54\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b9d4f5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1fff54a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"award\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"e9a81c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f78ab36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"08e221c\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99c2af8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"4f6f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77ee933\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"1ad48bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38c5f2a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0174b4f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6d44bcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"56b9787\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1767005\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"5fa5963\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c308bf9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f06995\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"76014dc\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"793d729\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1884e80\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"fd89ae4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0d0bed2\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"faq\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"9f71a33\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8730f02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"88ce9f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently Asked Questions\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cb4e57a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"a21f5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Have a question \\u2013 Scroll through the list of frequently asked questions but if you don\\u2019t find your answer, feel free to give us a call or drop us a note. Find out More\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7a9015e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1324962\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"147b947\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I have to re-register if I have services at multiple locations?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"2e36f73\"},{\"tab_title\":\"What information will the Patient Services Representative need to schedule an appointment?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"0601de7\"},{\"tab_title\":\"Will you bill my insurance?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"66698d4\"},{\"tab_title\":\"What if I can\'t make my appointment and I need to reschedule?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"c45a01f\"},{\"tab_title\":\"If I call with a question for the nurse or doctor, when can I expect a call back?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"fc77832\"},{\"tab_title\":\"How do I get my blood pressure checked?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"de651bc\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2947,1954,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2948,1954,'_elementor_controls_usage','a:16:{s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:7;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:16;s:4:\"size\";i:4;s:5:\"align\";i:9;s:11:\"header_size\";i:13;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:4;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:8;s:11:\"title_color\";i:5;s:22:\"typography_font_family\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:4;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:52;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:52;s:21:\"space_between_widgets\";i:4;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:6;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:12;s:15:\"animation_delay\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:6;s:12:\"text_columns\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:5:\"align\";i:2;}}s:8:\"advanced\";a:3:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:13:\"content_width\";i:27;s:8:\"html_tag\";i:22;s:6:\"height\";i:1;s:15:\"column_position\";i:1;s:16:\"content_position\";i:1;s:3:\"gap\";i:2;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:15:\"animation_delay\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:11;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:2;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_color_stop\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:17:\"_section_position\";a:3:{s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:4:\"size\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:2;s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:8;s:6:\"weight\";i:3;s:3:\"gap\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:10;s:10:\"team_image\";i:10;s:10:\"team_title\";i:10;s:13:\"team_subtitle\";i:10;s:16:\"listItems_groups\";i:10;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:5:\"image\";i:1;s:4:\"link\";i:1;s:8:\"position\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:31:\"title_typography_text_transform\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:34:\"description_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:7:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:10:\"navigation\";i:1;s:12:\"caption_type\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:2:{s:15:\"blog_pagination\";i:1;s:13:\"read_more_txt\";i:1;}}}}s:6:\"toggle\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_toggle\";a:1:{s:4:\"tabs\";i:1;}}}}}'),(2949,1955,'_wp_page_template','tmpl/template-fullwidth.php'),(2950,1955,'_elementor_edit_mode','builder'),(2951,1955,'_elementor_template_type','wp-page'),(2952,1955,'_elementor_version','3.4.0');
INSERT INTO `wp_postmeta` VALUES (2953,1955,'_elementor_data','[{\"id\":\"415baa5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/revslider\\/home\\/slider02.jpg\",\"id\":1736,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_b\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f9733ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b60d2b9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"75ff248\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":99},\"elements\":[{\"id\":\"148d762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services and Programs\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a4f1c2\",\"elType\":\"widget\",\"settings\":{\"before_title\":\"The Service Clilab Provide:\",\"animation_groups\":[{\"animation_text\":\"Vaccinations\",\"_id\":\"43667a7\"},{\"animation_text\":\"Emergency\",\"_id\":\"f000369\"},{\"animation_text\":\"Medicine\",\"_id\":\"01eb036\"},{\"animation_text\":\"and More\",\"_id\":\"f535720\"}],\"cursorChar\":\"|\",\"after_title\":\"\",\"content_alignment\":\"left\",\"sasban_title_typography_typography\":\"custom\",\"sasban_title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"sasban_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"sasban_title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_typewriter\"},{\"id\":\"773aab9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Overview Clilab\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a5e0a60\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Our Doctors\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"4dff333\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Book an Appointment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1cb8b9e\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"777f056\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ac664a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d85b334\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f11a60a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d37da9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"445430c\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"74d4fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6ec0d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b756cb5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9cb8c88\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"e1f2db9\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_background_background\":\"classic\",\"_background_color\":\"#0C608A\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"6b65ec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":150},\"elements\":[{\"id\":\"01d9f91\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_background_background\":\"classic\",\"_background_color\":\"#00BF54\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"75798c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":300},\"elements\":[{\"id\":\"5ac6805\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_background_background\":\"classic\",\"_background_color\":\"#02AFEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a335a0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc839d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1537f30\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a93016e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c80e1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f1de71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24b48b7\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"19339ab\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c4fe1b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"a6d13eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f750d0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7185fc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"1e2d933\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"406a045\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"a3af0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c1eb4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"ff0c483\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9484105\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aef73d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"368cd81\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8fc6ae3\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"879a6ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"0927f80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c0f167d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7d281b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3372511\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"156680b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"a4b8250\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a0faae2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"c702238\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"be1b59b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"260b408\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61bdc38\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2954,1955,'_elementor_page_assets','a:0:{}'),(2955,1955,'_elementor_controls_usage','a:12:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:5;s:11:\"header_size\";i:4;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;}}}}s:26:\"namedical_basic_typewriter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_typewriter\";a:4:{s:12:\"before_title\";i:1;s:16:\"animation_groups\";i:1;s:11:\"after_title\";i:1;s:17:\"content_alignment\";i:1;}}s:5:\"style\";a:1:{s:24:\"section_anim_title_style\";a:3:{s:34:\"sasban_title_typography_typography\";i:1;s:33:\"sasban_title_typography_font_size\";i:1;s:35:\"sasban_title_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:4:\"view\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:22;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:9:\"animation\";i:6;s:15:\"animation_delay\";i:4;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:13;s:8:\"html_tag\";i:9;s:3:\"gap\";i:2;s:18:\"gap_columns_custom\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:1;s:18:\"background_color_b\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:7;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:1;s:12:\"text_columns\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:5:\"image\";i:1;s:4:\"link\";i:1;s:8:\"position\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:8:{s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:31:\"title_typography_text_transform\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_font_weight\";i:1;s:34:\"description_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}'),(2956,1956,'_thumbnail_id','1738'),(2957,1956,'_elementor_edit_mode','builder'),(2958,1956,'_elementor_template_type','wp-page'),(2959,1956,'_elementor_version','3.4.0'),(2960,1956,'_wp_page_template','tmpl/template-fullwidth.php'),(2961,1956,'_elementor_data','[{\"id\":\"6ad0452\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"html_tag\":\"div\",\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[{\"id\":\"c4a93d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"06069d5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1360,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"6020ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":64.957,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e7a3507\",\"elType\":\"widget\",\"settings\":{\"compare_style\":\"horizontal\",\"before_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-1-4-12.jpeg\",\"id\":1891,\"alt\":\"\",\"source\":\"library\"},\"after_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-1-12.jpeg\",\"id\":1892,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"namedical_basic_image_compare\"}],\"isInner\":true},{\"id\":\"9b460ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"space_between_widgets\":60,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1a32e5c\",\"elType\":\"widget\",\"settings\":{\"apps_title\":\" Register Online Before You Arrive.\",\"apps_subtitle\":\"Skip The Waiting Room!\",\"apps_content\":\"We have up to date schedules, contact information, & let you book appointments online.\",\"listItems_groups\":[{\"_id\":\"dd3f74c\",\"btn_text\":\"Book an Appointment\",\"btn_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_icon\":\"\"},{\"_id\":\"5f686c4\",\"btn_text\":\"Request a Call Back\",\"btn_link\":{\"url\":\"#request\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"btn_style\":\"three\",\"btn_icon\":\"\"}]},\"elements\":[],\"widgetType\":\"namedical_basic_get_apps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a9d918\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c58763\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"164bf24\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"89657d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div><h2>What is Lorem Ipsum?<\\/h2><p><strong>Lorem Ipsum<\\/strong>\\u00a0is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<\\/p><\\/div><div><h2>Why do we use it?<\\/h2><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<\\/p><\\/div><p>\\u00a0<\\/p><div><h2>Where does it come from?<\\/h2><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \\\"de Finibus Bonorum et Malorum\\\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \\\"Lorem ipsum dolor sit amet..\\\", comes from a line in section 1.10.32.<\\/p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \\\"de Finibus Bonorum et Malorum\\\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.<\\/p><\\/div>\",\"text_columns\":\"1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cda0624\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Do I have to re-register if I have services at multiple locations?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"7287a1a\"},{\"tab_title\":\"What information will the Patient Services Representative need to schedule an appointment?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"f40c409\"},{\"tab_title\":\"Will you bill my insurance?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"bce7b54\"},{\"tab_title\":\"What if I can\'t make my appointment and I need to reschedule?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"087cc36\"},{\"tab_title\":\"How do I get my blood pressure checked?\",\"tab_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"_id\":\"d76f6ae\"}]},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false},{\"id\":\"90ec05f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5da32dd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[{\"id\":\"c827122\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"60f06f1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"9499fe8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b848d3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e89c182\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"dbbb4cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"0f7c267\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are industry experts who can help you\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7878dd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"131d42c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get To Know Our Doctors\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#team\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7d3cd42\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"8596bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"0fbe83e\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"dfd16aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"97a77a8\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"88497f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"edd7e3e\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"5402546\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"b296ec1\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"0f2defd\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"6868c5a\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patelr, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cda8058\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"request\"},\"elements\":[],\"widgetType\":\"menu-anchor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fadb6c9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"html_tag\":\"div\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"http:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/07\\/bg2.jpg\",\"id\":1320,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"repeat-x\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[{\"id\":\"90cf315\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ec0ee9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#03DD84\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":20,\"spread\":0,\"color\":\"rgba(41.99999999999999, 41.99999999999999, 41.99999999999999, 0.12)\"}},\"elements\":[{\"id\":\"c0cc543\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"d47798d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f75a09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"762fa7f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"09e52c4\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"ccff636\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"4b514f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"95d71c2\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2962,1956,'_elementor_page_assets','a:0:{}'),(2963,1956,'_elementor_controls_usage','a:13:{s:29:\"namedical_basic_image_compare\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:3:{s:13:\"compare_style\";i:1;s:12:\"before_image\";i:1;s:11:\"after_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:19;s:21:\"space_between_widgets\";i:2;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:24:\"namedical_basic_get_apps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_apps\";a:4:{s:10:\"apps_title\";i:1;s:13:\"apps_subtitle\";i:1;s:12:\"apps_content\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:8;s:3:\"gap\";i:2;s:18:\"gap_columns_custom\";i:2;s:8:\"html_tag\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:7:\"padding\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:19:\"background_bg_width\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:2;s:12:\"text_columns\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:9:\"accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"tabs\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:5;s:10:\"team_image\";i:5;s:10:\"team_title\";i:5;s:13:\"team_subtitle\";i:5;s:16:\"listItems_groups\";i:5;}}}}s:11:\"menu-anchor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_anchor\";a:1:{s:6:\"anchor\";i:1;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}}'),(2964,1957,'_wp_page_template','tmpl/template-fullwidth.php'),(2965,1957,'_elementor_edit_mode','builder'),(2966,1957,'_elementor_template_type','wp-page'),(2967,1957,'_elementor_version','3.4.0'),(2968,1957,'_elementor_data','[{\"id\":\"f5d2904\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"html_tag\":\"div\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_b\":\"#D4F7E8\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2A2A2A1A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"px\",\"size\":-372,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"085\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f4f4ea9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"494d86f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Register Online Before You Arrive.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"header_size\":\"span\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"885b02a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Look Forward to Welcoming You to the Clinic\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36d9d80\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our complete current fees guide is on display in the reception area.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"da93c14\",\"elType\":\"widget\",\"settings\":{\"process_groups\":[{\"process_title\":\"Step 1\",\"_id\":\"03506f4\",\"step_title\":\"Step 01\",\"process_content\":\"Registration and Book your Appointment.\",\"process_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/mouse.svg\",\"id\":1900,\"alt\":\"\",\"source\":\"library\"}},{\"process_title\":\"Step 2\",\"step_title\":\"Step 01\",\"process_content\":\"Determines the appropriate time for you to leave\",\"_id\":\"3577fc3\",\"process_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/walk.svg\",\"id\":1788,\"alt\":\"\",\"source\":\"library\"}},{\"process_title\":\"Step 3\",\"step_title\":\"Step 01\",\"process_content\":\"See your doctor as soon as you arrive.\",\"_id\":\"139997b\",\"process_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/verified.svg\",\"id\":1786,\"alt\":\"\",\"source\":\"library\"}}],\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"namedical_basic_process\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32ed220\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"background_color_b\":\"\"},\"elements\":[{\"id\":\"6a0c105\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c74ae11\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"bb972d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ac302fa\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a28043e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6fb4ffd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8889768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Doctor Consultation Fee may varies between clinics.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"0d28edd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"86345c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a5e847\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"dd346e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78e5384\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"layout_cols\":\"2\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"namedical_ea_appointment\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2969,1957,'_elementor_page_assets','a:0:{}'),(2970,1957,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:3;s:5:\"align\";i:2;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"namedical_basic_process\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_process\";a:1:{s:14:\"process_groups\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:5;s:8:\"html_tag\";i:5;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:15:\"background_xpos\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:6:\"margin\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:24:\"namedical_ea_appointment\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"section_appointment\";a:2:{s:5:\"width\";i:1;s:11:\"layout_cols\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}'),(2971,1958,'_wp_page_template','tmpl/template-fullwidth.php'),(2972,1958,'_elementor_edit_mode','builder'),(2973,1958,'_elementor_template_type','wp-page'),(2974,1958,'_elementor_version','3.4.0'),(2975,1958,'_elementor_data','[{\"id\":\"9082cde\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color_b\":\"\",\"html_tag\":\"div\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg2.jpg\",\"id\":1877,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_b\":\"#D4F7E8\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"top center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]}},\"elements\":[{\"id\":\"c26306f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3a842cd\",\"elType\":\"widget\",\"settings\":{\"historyItem_groups\":[{\"history_title\":\"NHE Increases & COBRA\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/military-medal.svg\",\"id\":1782,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"The 1980\\u2019s\",\"history_content\":\"By 1980, NHE accounted for 8.9 percent of GDP, an even larger leap than the decade prior. Under the Reagan Administration (1981-1989), regulations loosened across the board, and privatization of healthcare became increasingly common.\",\"history_more\":\"Read More\",\"_id\":\"e9799db\"},{\"history_title\":\"HIPAA & Medicaid Expansion\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/diamond.svg\",\"id\":1774,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"The 1990\\u2019s\",\"history_content\":\"By 1990, NHE accounted for 12.1 percent of GDP \\u2014 the largest increase thus far in the history of healthcare. Like others before him, the 42nd President of the United States, Bill Clinton (1993-2001), saw that this rapid increase in healthcare expenses would be damaging to the average American and attempted to take action.\",\"history_more\":\"Read More\",\"_id\":\"cb3cea2\"},{\"history_title\":\"Extending Coverage\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/sports-fan.svg\",\"id\":1783,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"The Early 2000\\u2019s\",\"history_content\":\"The history of healthcare slowed down at that point, as the national healthcare debate was tabled while the U.S. focused on the increased threat of terrorism and the second Iraq War. It wasn\\u2019t until election campaign mumblings began in 2006 and 2007 that insurance worked its way back into the national discussion.\",\"history_more\":\"Read More\",\"_id\":\"90e2a83\"},{\"history_title\":\"The Affordable Care Act\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"2008 to 2016\",\"history_content\":\"When Barack Obama (2009-2017) was elected the 44th President of the United States in 2008, he wasted no time getting to work on healthcare reform. He worked closely with Senator Ted Kennedy to create a new healthcare law that mirrored the one Kennedy and Nixon worked on in the \'70s.\",\"history_more\":\"Read More\",\"_id\":\"7799428\"},{\"history_title\":\" The Trump Presidency \",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"2017\",\"history_content\":\"Since Donald Trump was sworn in as the 45th President of the United States on January 20, 2017, many have questioned what would happen with our healthcare system \\u2014 specifically, what would happen to the ACA, since Donald Trump ran on a platform of \\u201crepealing and replacing\\u201d the bill.\",\"history_more\":\"Read More\",\"_id\":\"ad3a89c\"},{\"history_title\":\"The Future of Healthcare\",\"history_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777,\"alt\":\"\",\"source\":\"library\"},\"history_year\":\"Present\",\"history_content\":\"Hungry to notch a win on healthcare prior to the 2020 election, the Trump administration continues to push ahead on initiatives designed to reign-in healthcare costs. \",\"history_more\":\"Read More\",\"_id\":\"4088545\"}]},\"elements\":[],\"widgetType\":\"namedical_basic_history\"}],\"isInner\":false}],\"isInner\":false}]'),(2976,1958,'_elementor_page_assets','a:0:{}'),(2977,1958,'_elementor_controls_usage','a:3:{s:23:\"namedical_basic_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_history\";a:1:{s:18:\"historyItem_groups\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:18:\"background_color_b\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:8:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:8:\"html_tag\";i:1;}}}}}'),(2978,1959,'_wp_page_template','tmpl/template-fullwidth.php'),(2979,1959,'_elementor_edit_mode','builder'),(2980,1959,'_elementor_template_type','wp-page'),(2981,1959,'_elementor_version','3.4.0'),(2982,1959,'_elementor_data','[{\"id\":\"96ede1f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"b292481\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"91a1f76\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"b607992\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cce9a3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c7f3989\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"3df8758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"34d84d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"PLEASE READ THROUGH THEIR PROFILES TO LEARN MORE.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b186417\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6e733dd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get in touch\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"43202b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"81ac1b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"space_between_widgets\":40},\"elements\":[{\"id\":\"1381ae5\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"GASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC\\u2026\",\"listItems_groups\":[{\"_id\":\"57629b0\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"b90eca4\",\"social_icon\":\"fa fa-twitter\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"3f89239\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"8797347\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"4063c51\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"8290371\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200,\"space_between_widgets\":40},\"elements\":[{\"id\":\"d71c24c\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"98dfa4d\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"d962bc2\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"837a2a9\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"GASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC\\u2026\",\"listItems_groups\":[{\"_id\":\"57629b0\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"b90eca4\",\"social_icon\":\"fa fa-twitter\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"a19813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400,\"space_between_widgets\":40},\"elements\":[{\"id\":\"09e975f\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"5aba809\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"GASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC\\u2026\",\"listItems_groups\":[{\"_id\":\"57629b0\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"b90eca4\",\"social_icon\":\"fa fa-twitter\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"0e37de0\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"},{\"id\":\"9f08069\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"two\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2983,1959,'_elementor_page_assets','a:0:{}'),(2984,1959,'_thumbnail_id','1738'),(2985,1959,'_elementor_controls_usage','a:6:{s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;s:5:\"color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:3;s:15:\"animation_delay\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:13:\"content_width\";i:4;s:8:\"html_tag\";i:2;s:3:\"gap\";i:1;s:18:\"gap_columns_custom\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:12;s:10:\"team_image\";i:12;s:10:\"team_title\";i:12;s:13:\"team_subtitle\";i:12;s:16:\"listItems_groups\";i:12;}}}}}'),(2986,1960,'_wp_page_template','tmpl/template-fullwidth.php'),(2987,1960,'_elementor_edit_mode','builder'),(2988,1960,'_elementor_template_type','wp-page'),(2989,1960,'_elementor_version','3.4.0'),(2990,1960,'_elementor_data','[{\"id\":\"7467f3c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"928b4d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"1244cfe\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ab757e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0bbfbf6\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d94961\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"7ab4438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8be7bdd\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"b511bc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d1b9c9d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6e4a9e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1eba1f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"201c3ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f3ad479\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65c2f16\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"925dcaa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"65a4b9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ae885eb\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e0c0f6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"18ed9d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"c8055f5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3c01d7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2302a9a\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d835bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"f5ffaa1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5e83d0b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"89375db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"2e90ce0\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"25d1342\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"98e1a84\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"e57ad0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6654661\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9645ff6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"5677785\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"203961c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"d9dfdf5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb88942\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9fa31d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f59a224\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"257d702\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"aea81ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"13efb0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b684e21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"654b298\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0c4e64\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a75f82e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7aa186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"22c0b26\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"880c5a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"c61eaad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"dcda992\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"611e1ef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"971ffe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a050c2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fabdcd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59285d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75d2fce\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1996186\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7666aa3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e72c291\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"edf134f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"496e028\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5f2049f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40256ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10ed040\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16b4e15\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"e9f291d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"292999a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"55be3f2\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9837b9d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"01e1bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"efd18eb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ff6278\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d8878d\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"187449c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"fb3a9a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fecac43\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"d7590fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0ea933\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2dc03a9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"79b637c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"03607aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"db3fb14\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"e6a3b07\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8c0f8d6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7891d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc30f90\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"e420a7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2991,1960,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2992,1960,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:29;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:29;s:21:\"space_between_widgets\";i:2;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:18;s:13:\"content_width\";i:17;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:2;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:9;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:8;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:6;s:6:\"weight\";i:2;s:3:\"gap\";i:6;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:10;s:11:\"header_size\";i:8;s:4:\"link\";i:1;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_line_height\";i:5;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:3;s:5:\"align\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:24:\"namedical_basic_services\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_services\";a:4:{s:13:\"service_image\";i:3;s:14:\"services_title\";i:3;s:16:\"services_content\";i:3;s:18:\"services_more_link\";i:3;}}s:5:\"style\";a:2:{s:19:\"section_title_style\";a:4:{s:34:\"sasstp_title_typography_typography\";i:3;s:33:\"sasstp_title_typography_font_size\";i:3;s:35:\"sasstp_title_typography_font_weight\";i:3;s:35:\"sasstp_title_typography_line_height\";i:3;}s:21:\"section_content_style\";a:3:{s:29:\"content_typography_typography\";i:3;s:30:\"content_typography_font_weight\";i:3;s:13:\"content_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:6;s:12:\"text_columns\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:7:{s:10:\"text_align\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_line_height\";i:2;s:33:\"description_typography_typography\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:7:{s:8:\"carousel\";i:1;s:14:\"thumbnail_size\";i:1;s:14:\"slides_to_show\";i:1;s:21:\"slides_to_show_tablet\";i:1;s:21:\"slides_to_show_mobile\";i:1;s:10:\"navigation\";i:1;s:12:\"caption_type\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:13:\"image_spacing\";i:1;s:20:\"image_spacing_custom\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:2:{s:15:\"blog_pagination\";i:1;s:13:\"read_more_txt\";i:1;}}}}}'),(2993,1961,'_wp_page_template','tmpl/template-fullwidth.php'),(2994,1961,'_elementor_edit_mode','builder'),(2995,1961,'_elementor_template_type','wp-page'),(2996,1961,'_elementor_version','3.4.0'),(2997,1961,'_elementor_data','[{\"id\":\"0df225b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#2A2A2A1F\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"2aac226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5957a2f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"158776c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b93f2c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Free Delivery on all Orders Over $30\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"5d4beac\"},{\"text\":\"30 Days Money Back Guarantee\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"a7f433a\"},{\"text\":\"Call us on a Toll Free Phone Number\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"1a63c7c\"}],\"icon_align\":\"center\",\"divider\":\"yes\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"193c91d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-shop.jpg\",\"id\":1866,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":1000,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"96ae7f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"806ec06\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"00e7bff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"0fa47b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75efc0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WooCommerce\",\"header_size\":\"span\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cb8f4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flat 25% OFF Medicine Order\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a04897\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6db69f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Now\",\"size\":\"md\",\"background_color\":\"#2A2A2A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ebcd99c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"hide_tablet\":\"hidden-tablet\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"1c490bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8b35e0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imagebox3-8.jpeg\",\"id\":1869,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Save 50% - N95 Face Mask\",\"description_text\":\"Shop Now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"e572f62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b0b7518\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imagebox2-8.jpeg\",\"id\":1868,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Save 35% - Functional Foods \",\"description_text\":\"Shop Now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"542bcb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"280b779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imagebox-9.jpeg\",\"id\":1867,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Save 25% - The Medical Kit\",\"description_text\":\"Shop Now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e3313c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4364e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a47b9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Products\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7bb5e07\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1A\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"be602cc\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[products limit=\\\"5\\\" visibility=\\\"featured\\\" ]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6444514\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3c0d498\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6debb06\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3b0a16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67ccbc6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"343b772\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bb1ba46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3d94fd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sale Products\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"adb2385\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1A\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3131834\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[sale_products]\"},\"elements\":[],\"widgetType\":\"shortcode\"},{\"id\":\"f405731\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button white has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imgb1-13.jpeg\",\"id\":1769,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"acaa359\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"94decd5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5476d8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Products\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a18f02c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1A\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e74c782\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[products limit=\\\"10\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5facc4b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"d00e4dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8d48080\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"02dcfab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f93a14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f4f5a7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"febe5a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd4ad33\",\"elType\":\"widget\",\"settings\":{\"title\":\"From The Blog\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e2f0a3c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1A\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d266022\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":false}],\"isInner\":false}]'),(2998,1961,'_elementor_page_assets','a:0:{}'),(2999,1961,'_elementor_controls_usage','a:10:{s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:16;s:21:\"space_between_widgets\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:9;s:13:\"content_width\";i:10;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:3:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:2;s:11:\"hide_tablet\";i:1;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:7:\"divider\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"size\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:5:{s:5:\"image\";i:8;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:4:\"link\";i:8;s:8:\"position\";i:8;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:12:{s:10:\"text_align\";i:7;s:27:\"title_typography_typography\";i:8;s:33:\"description_typography_typography\";i:8;s:32:\"description_typography_font_size\";i:4;s:37:\"description_typography_text_transform\";i:3;s:34:\"description_typography_line_height\";i:4;s:26:\"title_typography_font_size\";i:5;s:28:\"title_typography_line_height\";i:5;s:11:\"title_color\";i:2;s:17:\"description_color\";i:2;s:31:\"title_typography_text_transform\";i:1;s:34:\"description_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:4;s:3:\"gap\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:3;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:1:{s:15:\"blog_pagination\";i:1;}}}}}'),(3000,1962,'_wp_page_template','tmpl/template-fullwidth.php'),(3001,1962,'_elementor_edit_mode','builder'),(3002,1962,'_elementor_template_type','wp-page'),(3003,1962,'_elementor_version','3.4.0'),(3004,1962,'_elementor_data','[{\"id\":\"954b5ae\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\"},\"elements\":[{\"id\":\"43d3915\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ae475d\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage\",\"shortcode\":\"[rev_slider alias=\\\"home\\\" slidertitle=\\\"Homepage\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"995d6ee\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"46abb01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1dfb578\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7ee32c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6283380\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a006717\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"53b97b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"a08640a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"939726c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"370dfe0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a5dd720\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c75800a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d9b081\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d551b8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8070085\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1264fe3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0d31d53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"b95bf54\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2943253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"aadbae7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bbf37c7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1fd71a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"1c8d3f7\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"9143392\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e30dd4d\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"5b869e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"e3afacb\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4fdf5dc\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78badcf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d436c1c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"46d781d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"b385744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"94d612c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team of highly trained doctors\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5480d4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c No matter what your concern, your first stop is one of our accessible, expert health professionals. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c5f6c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e9c3daf\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2026712\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9f928e3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"276e653\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"fdede28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"271137f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please read through their profiles to learn more.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1538d79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"01364c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get To Know Our Doctors\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"be74bd5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68960fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a6f31d\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-11-11.png\",\"id\":1765,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Odile de Mesmay, GP\",\"team_subtitle\":\"Gastroenterologist, therapist, Head of the Internal Medicine Clinic\\u2026\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"f431b94\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"47c57f1\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-11.png\",\"id\":1764,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Mohamed Sheikh, GP\",\"team_subtitle\":\"Director and key member of our team of London based private\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"552e63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":300},\"elements\":[{\"id\":\"4fd7dab\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-12-11.png\",\"id\":1766,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Ilona Mercieca, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2017\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"1f17fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"dc5fc31\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-14-12.png\",\"id\":1768,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Mrs. Anna, Dental Nurse\",\"team_subtitle\":\"Smile Wisdom Academy of Dentistry & Dental Nursing.\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true},{\"id\":\"6712854\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33,\"animation\":\"none\",\"animation_delay\":500},\"elements\":[{\"id\":\"c3d3a6f\",\"elType\":\"widget\",\"settings\":{\"team_style\":\"three\",\"team_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-Copy-13-11.png\",\"id\":1767,\"alt\":\"\",\"source\":\"library\"},\"team_title\":\"Dr Hiren Patel, GP\",\"team_subtitle\":\"Member of the Royal College of General Practitioners 2018\",\"listItems_groups\":[{\"_id\":\"28b5a7a\",\"social_icon\":\"fa fa-linkedin\",\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"_id\":\"c5c86bd\",\"social_icon\":\"fa fa-twitter\"}],\"contact_groups\":[]},\"elements\":[],\"widgetType\":\"namedical_basic_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cedd5ec\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"animation\":\"none\"},\"elements\":[{\"id\":\"a5bffa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d6f7a17\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button white has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/imgb1-13.jpeg\",\"id\":1769,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbd299c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"d6fcc3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"41c9085\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5f08359\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets_mobile\":0},\"elements\":[{\"id\":\"791c0ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2451320\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c5930f3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c3e0d24\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da04a4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d8599c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5b91593\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9493562\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"96b350b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9ef36d3\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"fb9b65e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f192752\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"fdaef5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"610dced\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"47f5fbb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c2f81fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8440200\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6c4bca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"49b7654\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2d6f421\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"0e0cb4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"0f15725\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"0eba1c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.664,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6673c6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"c0c74f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"469f07c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f5a77ce\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Highlights:\",\"taxonomy\":\"category\",\"classes\":\"\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"wp-widget-tag_cloud\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"951ea37\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0edf068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5b27c78\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"animation\":\"none\"},\"elements\":[{\"id\":\"4a8b423\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"d6b67d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61fc01f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d3c955\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3d35c88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45e41b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3d525eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4750667\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ea0ee72\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e889c48\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"ba125f7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a31bb1e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"b76d255\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"32a0944\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9917d23\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"e572609\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"bd8d398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here are some helpful links to get you answers faster.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"abda07e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"86e12b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b4706d3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\"},\"elements\":[{\"id\":\"15bd864\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"dde262f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#EAE5ED\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"48c5a70\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"2e8b1b7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F4DDDD\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"fd59c93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"553cb50\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e8cfc4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26f6a2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d2e102\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"7acd6e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"01adba6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"996b17c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"7e8919c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4776214\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"200e1c3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6577d80\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f18579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"af83f68\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54072ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"963a3ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fa39727\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"823ea9d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"db1dc34\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1626c69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"313ecff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e7c969\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34dfb0d\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}]},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"ca85712\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"961816d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.332,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"818d3fb\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa097b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d3ee5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e280d73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8950dd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"c458c55\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ec7a734\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"753856b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f4b8be\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3005,1962,'_elementor_page_assets','a:0:{}'),(3006,1962,'_elementor_controls_usage','a:18:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:55;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:55;s:21:\"space_between_widgets\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:7;s:11:\"hide_tablet\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:13;s:15:\"animation_delay\";i:8;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:8:\"html_tag\";i:25;s:13:\"content_width\";i:29;s:3:\"gap\";i:5;s:18:\"gap_columns_custom\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:14;s:7:\"padding\";i:8;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:10;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:2;}s:26:\"section_background_overlay\";a:1:{s:29:\"background_overlay_background\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:10;s:6:\"weight\";i:4;s:3:\"gap\";i:10;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:15;s:11:\"header_size\";i:12;s:4:\"link\";i:1;s:5:\"align\";i:4;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:6;s:22:\"typography_line_height\";i:6;s:11:\"title_color\";i:2;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:7;s:5:\"align\";i:5;s:4:\"link\";i:6;s:4:\"size\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:12:\"_css_classes\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:13:\"border_radius\";i:2;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:4;s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:4;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:20:\"namedical_basic_team\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_team\";a:5:{s:10:\"team_style\";i:5;s:10:\"team_image\";i:5;s:10:\"team_title\";i:5;s:13:\"team_subtitle\";i:5;s:16:\"listItems_groups\";i:5;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:8;s:12:\"text_columns\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:2:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}s:19:\"wp-widget-tag_cloud\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:2;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:2;s:17:\"_background_color\";i:2;}}}}s:23:\"namedical_basic_contact\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_contact\";a:4:{s:11:\"upload_type\";i:1;s:13:\"contact_image\";i:1;s:13:\"contact_title\";i:1;s:16:\"listItems_groups\";i:1;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}}'),(3007,8,'_elementor_css','a:6:{s:4:\"time\";i:1652778930;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3008,1947,'_elementor_css','a:6:{s:4:\"time\";i:1652778931;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3010,1078,'_elementor_css','a:6:{s:4:\"time\";i:1652782453;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3011,1963,'_wp_trash_meta_status','publish'),(3012,1963,'_wp_trash_meta_time','1652782619'),(3013,1964,'_wp_trash_meta_status','publish'),(3014,1964,'_wp_trash_meta_time','1652782733'),(3015,1965,'_wp_trash_meta_status','publish'),(3016,1965,'_wp_trash_meta_time','1652782760'),(3017,1966,'_wp_trash_meta_status','publish'),(3018,1966,'_wp_trash_meta_time','1652782796'),(3019,28,'_edit_lock','1652799284:1'),(3020,1967,'_edit_lock','1652784928:1'),(3021,1968,'_wp_attached_file','2022/05/bg18.jpg'),(3022,1968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2022/05/bg18.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"bg18-300x106.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bg18-1024x363.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bg18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"bg18-768x272.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"bg18-1536x544.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:544;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"bg18-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"bg18-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"bg18-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"bg18-600x213.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"bg18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3023,1969,'_wp_attached_file','2022/05/slider_02-1-1.jpg'),(3024,1969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:600;s:4:\"file\";s:25:\"2022/05/slider_02-1-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"slider_02-1-1-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"slider_02-1-1-1024x320.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"slider_02-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"slider_02-1-1-768x240.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"slider_02-1-1-1536x480.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"slider_02-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"slider_02-1-1-600x188.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"slider_02-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"slider_02-1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"slider_02-1-1-600x188.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"slider_02-1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3025,1970,'_wp_attached_file','2022/05/home-slide-1.jpg'),(3026,1970,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:606;s:4:\"file\";s:24:\"2022/05/home-slide-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home-slide-1-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-slide-1-1024x323.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-slide-1-768x242.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"home-slide-1-1536x485.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-slide-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"home-slide-1-600x189.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-slide-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"home-slide-1-600x189.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3027,1971,'_wp_attached_file','2022/05/home-slide-2.jpg'),(3028,1971,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:606;s:4:\"file\";s:24:\"2022/05/home-slide-2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home-slide-2-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-slide-2-1024x323.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-slide-2-768x242.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"home-slide-2-1536x485.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-slide-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"home-slide-2-600x189.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-slide-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"home-slide-2-600x189.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-slide-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3029,1972,'_wp_attached_file','2022/05/slider1-2.jpg'),(3030,1972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2022/05/slider1-2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"slider1-2-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"slider1-2-1024x533.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"slider1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"slider1-2-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"slider1-2-1536x800.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"slider1-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"slider1-2-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"slider1-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"slider1-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"slider1-2-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"slider1-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3031,1967,'_wp_trash_meta_status','publish'),(3032,1967,'_wp_trash_meta_time','1652784934'),(3033,1973,'_edit_lock','1652785089:1'),(3034,1973,'_customize_restore_dismissed','1'),(3035,1974,'_edit_lock','1652785216:1'),(3036,1974,'_wp_trash_meta_status','publish'),(3037,1974,'_wp_trash_meta_time','1652785230'),(3038,1975,'_wp_page_template','tmpl/template-fullwidth.php'),(3039,1975,'_elementor_edit_mode','builder'),(3040,1975,'_elementor_template_type','wp-page'),(3041,1975,'_elementor_version','3.4.0'),(3042,1975,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.33,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.6,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.664,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3043,1975,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3044,1975,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3045,1975,'_elementor_css','a:6:{s:4:\"time\";i:1652778973;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:16;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3046,1976,'_wp_page_template','tmpl/template-fullwidth.php'),(3047,1976,'_elementor_edit_mode','builder'),(3048,1976,'_elementor_template_type','wp-page'),(3049,1976,'_elementor_version','3.4.0'),(3050,1976,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.33,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.333,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.664},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.333,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.23,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.6,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.3333333},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.664,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.7,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3051,1976,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3052,1976,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3053,1976,'_elementor_css','a:6:{s:4:\"time\";i:1652778973;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:16;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3054,1977,'_wp_page_template','tmpl/template-fullwidth.php'),(3055,1977,'_elementor_edit_mode','builder'),(3056,1977,'_elementor_template_type','wp-page'),(3057,1977,'_elementor_version','3.4.0'),(3058,1977,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3059,1977,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3060,1977,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3061,1977,'_elementor_css','a:6:{s:4:\"time\";i:1652778973;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:16;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3062,1368,'_elementor_css','a:6:{s:4:\"time\";i:1652785328;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3063,859,'_elementor_css','a:6:{s:4:\"time\";i:1652785381;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:3;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3065,1978,'_wp_page_template','tmpl/template-fullwidth.php'),(3066,1978,'_elementor_edit_mode','builder'),(3067,1978,'_elementor_template_type','wp-page'),(3068,1978,'_elementor_version','3.6.5'),(3069,1978,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3070,1978,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3071,1978,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3072,1978,'_elementor_css','a:6:{s:4:\"time\";i:1652785479;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:16;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3073,1979,'_wp_page_template','tmpl/template-fullwidth.php'),(3074,1979,'_elementor_edit_mode','builder'),(3075,1979,'_elementor_template_type','wp-page'),(3076,1979,'_elementor_version','3.6.5'),(3077,1979,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3078,1979,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3079,1979,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3080,1979,'_elementor_css','a:6:{s:4:\"time\";i:1652785479;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:16;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3081,1980,'_wp_page_template','tmpl/template-fullwidth.php'),(3082,1980,'_elementor_edit_mode','builder'),(3083,1980,'_elementor_template_type','wp-page'),(3084,1980,'_elementor_version','3.6.5'),(3085,1980,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3086,1980,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3087,1980,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3088,1980,'_elementor_css','a:6:{s:4:\"time\";i:1652785479;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:16;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3089,1981,'_wp_page_template','tmpl/template-fullwidth.php'),(3090,1981,'_elementor_edit_mode','builder'),(3091,1981,'_elementor_template_type','wp-page'),(3092,1981,'_elementor_version','3.6.5'),(3093,1981,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3094,1981,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3095,1981,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3096,1982,'_wp_page_template','tmpl/template-fullwidth.php'),(3097,1982,'_elementor_edit_mode','builder'),(3098,1982,'_elementor_template_type','wp-page'),(3099,1982,'_elementor_version','3.6.5'),(3100,1982,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3101,1982,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3102,1982,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3103,1983,'_wp_page_template','tmpl/template-fullwidth.php'),(3104,1983,'_elementor_edit_mode','builder'),(3105,1983,'_elementor_template_type','wp-page'),(3106,1983,'_elementor_version','3.6.5'),(3107,1983,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3108,1983,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3109,1983,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3111,1984,'_wp_page_template','tmpl/template-fullwidth.php'),(3112,1984,'_elementor_edit_mode','builder'),(3113,1984,'_elementor_template_type','wp-page'),(3114,1984,'_elementor_version','3.6.5'),(3115,1984,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3116,1984,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3117,1984,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3118,1984,'_elementor_css','a:6:{s:4:\"time\";i:1652785552;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3119,1985,'_wp_page_template','tmpl/template-fullwidth.php'),(3120,1985,'_elementor_edit_mode','builder'),(3121,1985,'_elementor_template_type','wp-page'),(3122,1985,'_elementor_version','3.6.5'),(3123,1985,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3124,1985,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3125,1985,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3126,1985,'_elementor_css','a:6:{s:4:\"time\";i:1652785552;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3127,1986,'_wp_page_template','tmpl/template-fullwidth.php'),(3128,1986,'_elementor_edit_mode','builder'),(3129,1986,'_elementor_template_type','wp-page'),(3130,1986,'_elementor_version','3.6.5'),(3131,1986,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3132,1986,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3133,1986,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3134,1986,'_elementor_css','a:6:{s:4:\"time\";i:1652785552;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3136,1987,'_wp_page_template','tmpl/template-fullwidth.php'),(3137,1987,'_elementor_edit_mode','builder'),(3138,1987,'_elementor_template_type','wp-page'),(3139,1987,'_elementor_version','3.6.5'),(3140,1987,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3141,1987,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3142,1987,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3143,1987,'_elementor_css','a:6:{s:4:\"time\";i:1652785742;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3144,1988,'_wp_page_template','tmpl/template-fullwidth.php'),(3145,1988,'_elementor_edit_mode','builder'),(3146,1988,'_elementor_template_type','wp-page'),(3147,1988,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (3148,1988,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3149,1988,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3150,1988,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3151,1988,'_elementor_css','a:6:{s:4:\"time\";i:1652785742;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3152,1989,'_wp_page_template','tmpl/template-fullwidth.php'),(3153,1989,'_elementor_edit_mode','builder'),(3154,1989,'_elementor_template_type','wp-page'),(3155,1989,'_elementor_version','3.6.5'),(3156,1989,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3157,1989,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3158,1989,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3159,1989,'_elementor_css','a:6:{s:4:\"time\";i:1652785742;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3161,1990,'_wp_page_template','tmpl/template-fullwidth.php'),(3162,1990,'_elementor_edit_mode','builder'),(3163,1990,'_elementor_template_type','wp-page'),(3164,1990,'_elementor_version','3.6.5'),(3165,1990,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3166,1990,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3167,1990,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3168,1990,'_elementor_css','a:6:{s:4:\"time\";i:1652785775;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3169,1991,'_wp_page_template','tmpl/template-fullwidth.php'),(3170,1991,'_elementor_edit_mode','builder'),(3171,1991,'_elementor_template_type','wp-page'),(3172,1991,'_elementor_version','3.6.5'),(3173,1991,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to CliLab health services\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3174,1991,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3175,1991,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3176,1991,'_elementor_css','a:6:{s:4:\"time\";i:1652785775;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3177,1992,'_wp_page_template','tmpl/template-fullwidth.php'),(3178,1992,'_elementor_edit_mode','builder'),(3179,1992,'_elementor_template_type','wp-page'),(3180,1992,'_elementor_version','3.6.5'),(3181,1992,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3182,1992,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3183,1992,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3184,1992,'_elementor_css','a:6:{s:4:\"time\";i:1652785775;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3186,1993,'_wp_page_template','tmpl/template-fullwidth.php'),(3187,1993,'_elementor_edit_mode','builder'),(3188,1993,'_elementor_template_type','wp-page'),(3189,1993,'_elementor_version','3.6.5'),(3190,1993,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3191,1993,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3192,1993,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3193,1993,'_elementor_css','a:6:{s:4:\"time\";i:1652785899;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3194,1994,'_wp_page_template','tmpl/template-fullwidth.php'),(3195,1994,'_elementor_edit_mode','builder'),(3196,1994,'_elementor_template_type','wp-page'),(3197,1994,'_elementor_version','3.6.5'),(3198,1994,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3199,1994,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3200,1994,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3201,1994,'_elementor_css','a:6:{s:4:\"time\";i:1652785899;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3202,1995,'_wp_page_template','tmpl/template-fullwidth.php'),(3203,1995,'_elementor_edit_mode','builder'),(3204,1995,'_elementor_template_type','wp-page'),(3205,1995,'_elementor_version','3.6.5'),(3206,1995,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"For the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3207,1995,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3208,1995,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3209,1995,'_elementor_css','a:6:{s:4:\"time\";i:1652785899;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3211,1996,'_wp_page_template','tmpl/template-fullwidth.php'),(3212,1996,'_elementor_edit_mode','builder'),(3213,1996,'_elementor_template_type','wp-page'),(3214,1996,'_elementor_version','3.6.5'),(3215,1996,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"For the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3216,1996,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3217,1996,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3218,1996,'_elementor_css','a:6:{s:4:\"time\";i:1652785930;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3219,1997,'_wp_page_template','tmpl/template-fullwidth.php'),(3220,1997,'_elementor_edit_mode','builder'),(3221,1997,'_elementor_template_type','wp-page'),(3222,1997,'_elementor_version','3.6.5'),(3223,1997,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"For the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3224,1997,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3225,1997,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3226,1997,'_elementor_css','a:6:{s:4:\"time\";i:1652785930;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3227,1998,'_wp_page_template','tmpl/template-fullwidth.php'),(3228,1998,'_elementor_edit_mode','builder'),(3229,1998,'_elementor_template_type','wp-page'),(3230,1998,'_elementor_version','3.6.5'),(3231,1998,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3232,1998,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3233,1998,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3234,1998,'_elementor_css','a:6:{s:4:\"time\";i:1652785930;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3236,1368,'_edit_lock','1652791863:1'),(3245,2000,'_elementor_edit_mode','builder'),(3246,2000,'_elementor_template_type','page'),(3247,2000,'_elementor_version','3.6.5'),(3248,2001,'_elementor_edit_mode','builder'),(3249,2001,'_elementor_template_type','page'),(3250,2001,'_elementor_version','3.6.5'),(3251,2000,'_wp_page_template','default'),(3252,2000,'_elementor_data','[{\"id\":\"156616d8\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"630e7da3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b11a547\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6ac49c66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23c3278e\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38dfdf7b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38ee1ab7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7980929e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2ff12bc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b0a2b17\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"349c8524\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7932e027\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"205a7cd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b6872f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"230e6d5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2238af\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5bf4e13a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39dd619b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2763a998\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"81e6b8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"602245fd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d01dc79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"426e99d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7d9170eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"67f9aa10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"27552fad\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7093b2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"17587e0e\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"32163759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6d17b0d9\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"15396b97\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"318f1f78\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a3ca656\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"34324023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7af157d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7f05a6c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12cc737d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"149f21da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0e4017\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"8a6a04\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17691772\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4fc4c280\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a25917f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1d124ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1119c45d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53cb1738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dad561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70c7363a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"66f7080c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"2e72b2ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6a8d7f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"1666fe77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c65e119\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d667\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2af12d19\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"716e5a2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0d6cd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2646c0c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62699c5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c1bc843\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"368c628a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"7bbc1fd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6bccfc9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70a0ee8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20539617\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76eb2640\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"a00f74c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"4c266d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7683845d\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a1e02f0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cc1ff8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"67351ec1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4787e976\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e506042\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6e23ad\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"3401d6d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"54efc1c7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"3212d5a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"54c1defc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e6d89b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"50b36501\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"60401b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6801a1bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"5d011e9\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ec00938\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37a71feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5042b95f\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"5a4e2d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3253,2002,'_elementor_edit_mode','builder'),(3254,2002,'_elementor_template_type','page'),(3255,2002,'_elementor_version','3.6.5'),(3256,2002,'_wp_page_template','default'),(3257,2002,'_elementor_data','[{\"id\":\"156616d8\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"630e7da3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"b11a547\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"6ac49c66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"23c3278e\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38dfdf7b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38ee1ab7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7980929e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2ff12bc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3b0a2b17\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"349c8524\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7932e027\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"205a7cd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4b6872f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"230e6d5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2238af\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5bf4e13a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39dd619b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2763a998\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"81e6b8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"602245fd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6d01dc79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"426e99d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7d9170eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"67f9aa10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"27552fad\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7093b2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"17587e0e\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"32163759\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6d17b0d9\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"15396b97\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"318f1f78\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a3ca656\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"34324023\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7af157d6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7f05a6c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12cc737d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"149f21da\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e0e4017\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"8a6a04\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17691772\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4fc4c280\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a25917f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"1d124ff5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1119c45d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53cb1738\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4dad561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70c7363a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"66f7080c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"2e72b2ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6a8d7f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"1666fe77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c65e119\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d667\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2af12d19\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"716e5a2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e0d6cd1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2646c0c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"62699c5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c1bc843\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"368c628a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"7bbc1fd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6bccfc9b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70a0ee8d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20539617\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"76eb2640\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"a00f74c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"4c266d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7683845d\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a1e02f0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cc1ff8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"67351ec1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4787e976\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e506042\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a6e23ad\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"3401d6d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"54efc1c7\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"3212d5a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"54c1defc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e6d89b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"50b36501\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"60401b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6801a1bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"5d011e9\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ec00938\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37a71feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5042b95f\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"5a4e2d39\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3258,2000,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3259,2003,'_wp_page_template','tmpl/template-fullwidth.php'),(3260,2003,'_elementor_edit_mode','builder'),(3261,2003,'_elementor_template_type','wp-page'),(3262,2003,'_elementor_version','3.6.5'),(3263,2003,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3264,2003,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3265,2003,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3266,2004,'_wp_page_template','tmpl/template-fullwidth.php'),(3267,2004,'_elementor_edit_mode','builder'),(3268,2004,'_elementor_template_type','wp-page'),(3269,2004,'_elementor_version','3.6.5'),(3270,2004,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a296646\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ab1daa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"01afea5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"79fb1be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4196207\",\"elType\":\"widget\",\"settings\":{\"title\":\"Commitment to Quality Care\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42290cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Patient Centered-Care<\\/strong><\\/p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3069186\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"fb7c3f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Quality Improvement<\\/strong><\\/p><p>At Clilab We\'are to continuously improve its standard of care delivery.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aed512c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"60016e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Healthcare Technology<\\/strong><\\/p><p>Investment in rapidly developing healthcare technology allows We to further streamline services<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"396dfbe\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A1F\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"450fc03\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services we Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hover_color\":\"#2A2A2A\",\"button_background_hover_background\":\"\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e635593\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"97c5ec6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3229594-png-11.jpeg\",\"id\":1791,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ae7683\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"2d3723a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"89a66d9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dac513e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c3a07b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"d659eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cc7685b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"f7f2e1d\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e3fb89\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1345,\"sizes\":[]},\"structure\":\"30\",\"animation\":\"none\"},\"elements\":[{\"id\":\"1a1c5bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"434754c\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"37\",\"48\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true},{\"id\":\"c30a993\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.6640000000000014779288903810083866119384765625,\"_inline_size_tablet\":5,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ed43fad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Artboard-9-12.jpeg\",\"id\":1827,\"alt\":\"\",\"source\":\"library\"},\"thumbnail_custom_dimension\":{\"width\":\"730\",\"height\":\"640\"},\"title_text\":\"July 9, 2011\",\"description_text\":\"How to Get the Most Out of Physical Therapy\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/how-to-get-the-most-out-of-physical-therapy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#FFFFFF\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_text_transform\":\"uppercase\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#2A2A2A\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"1195fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":47},\"elements\":[{\"id\":\"bde04a8\",\"elType\":\"widget\",\"settings\":{\"blog_style\":\"two\",\"blog_limit\":2,\"blog_show_id\":[\"45\",\"53\"],\"blog_pagination\":\"\",\"read_more_txt\":\"READ MORE\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3271,2004,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3272,2004,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3273,2005,'_wp_page_template','default'),(3274,2005,'_elementor_edit_mode','builder'),(3275,2005,'_elementor_template_type','wp-page'),(3276,2005,'_elementor_version','3.6.5'),(3277,2005,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3278,2005,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3279,2005,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3281,2006,'_wp_page_template','default'),(3282,2006,'_elementor_edit_mode','builder'),(3283,2006,'_elementor_template_type','wp-page'),(3284,2006,'_elementor_version','3.6.5'),(3285,2006,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3286,2006,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3287,2006,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3288,2006,'_elementor_css','a:6:{s:4:\"time\";i:1652786200;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3289,2007,'_wp_page_template','default'),(3290,2007,'_elementor_edit_mode','builder'),(3291,2007,'_elementor_template_type','wp-page'),(3292,2007,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (3293,2007,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3294,2007,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3295,2007,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3296,2007,'_elementor_css','a:6:{s:4:\"time\";i:1652786200;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3297,2008,'_wp_page_template','default'),(3298,2008,'_elementor_edit_mode','builder'),(3299,2008,'_elementor_template_type','wp-page'),(3300,2008,'_elementor_version','3.6.5'),(3301,2008,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3302,2008,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3303,2008,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3304,2008,'_elementor_css','a:6:{s:4:\"time\";i:1652786200;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3306,2009,'_wp_page_template','default'),(3307,2009,'_elementor_edit_mode','builder'),(3308,2009,'_elementor_template_type','wp-page'),(3309,2009,'_elementor_version','3.6.5'),(3310,2009,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3311,2009,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3312,2009,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3313,2009,'_elementor_css','a:6:{s:4:\"time\";i:1652786237;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3314,2010,'_wp_page_template','default'),(3315,2010,'_elementor_edit_mode','builder'),(3316,2010,'_elementor_template_type','wp-page'),(3317,2010,'_elementor_version','3.6.5'),(3318,2010,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#029967\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3319,2010,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3320,2010,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3321,2010,'_elementor_css','a:6:{s:4:\"time\";i:1652786237;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3322,2011,'_wp_page_template','default'),(3323,2011,'_elementor_edit_mode','builder'),(3324,2011,'_elementor_template_type','wp-page'),(3325,2011,'_elementor_version','3.6.5'),(3326,2011,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3327,2011,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3328,2011,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3329,2011,'_elementor_css','a:6:{s:4:\"time\";i:1652786237;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3330,2012,'_wp_page_template','default'),(3331,2012,'_elementor_edit_mode','builder'),(3332,2012,'_elementor_template_type','wp-page'),(3333,2012,'_elementor_version','3.6.5'),(3334,2012,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3335,2012,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3336,2012,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3337,2013,'_wp_page_template','default'),(3338,2013,'_elementor_edit_mode','builder'),(3339,2013,'_elementor_template_type','wp-page'),(3340,2013,'_elementor_version','3.6.5'),(3341,2013,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3342,2013,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3343,2013,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3344,2014,'_wp_page_template','default'),(3345,2014,'_elementor_edit_mode','builder'),(3346,2014,'_elementor_template_type','wp-page'),(3347,2014,'_elementor_version','3.6.5'),(3348,2014,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/bg18.jpg\",\"id\":1968,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3349,2014,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3350,2014,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3352,2015,'_wp_page_template','default'),(3353,2015,'_elementor_edit_mode','builder'),(3354,2015,'_elementor_template_type','wp-page'),(3355,2015,'_elementor_version','3.6.5'),(3356,2015,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/bg18.jpg\",\"id\":1968,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3357,2015,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3358,2015,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3359,2015,'_elementor_css','a:6:{s:4:\"time\";i:1652786491;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3360,2016,'_wp_page_template','default'),(3361,2016,'_elementor_edit_mode','builder'),(3362,2016,'_elementor_template_type','wp-page'),(3363,2016,'_elementor_version','3.6.5'),(3364,2016,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/bg18.jpg\",\"id\":1968,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3365,2016,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3366,2016,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3367,2016,'_elementor_css','a:6:{s:4:\"time\";i:1652786491;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3368,2017,'_wp_page_template','default'),(3369,2017,'_elementor_edit_mode','builder'),(3370,2017,'_elementor_template_type','wp-page'),(3371,2017,'_elementor_version','3.6.5'),(3372,2017,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/bg18.jpg\",\"id\":1968,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3373,2017,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3374,2017,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3375,2017,'_elementor_css','a:6:{s:4:\"time\";i:1652786491;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3377,2018,'_wp_page_template','default'),(3378,2018,'_elementor_edit_mode','builder'),(3379,2018,'_elementor_template_type','wp-page'),(3380,2018,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (3381,2018,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/bg18.jpg\",\"id\":1968,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3382,2018,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3383,2018,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3384,2018,'_elementor_css','a:6:{s:4:\"time\";i:1652786536;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3385,2019,'_wp_page_template','default'),(3386,2019,'_elementor_edit_mode','builder'),(3387,2019,'_elementor_template_type','wp-page'),(3388,2019,'_elementor_version','3.6.5'),(3389,2019,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/bg18.jpg\",\"id\":1968,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3390,2019,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3391,2019,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3392,2019,'_elementor_css','a:6:{s:4:\"time\";i:1652786536;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3393,2020,'_wp_page_template','default'),(3394,2020,'_elementor_edit_mode','builder'),(3395,2020,'_elementor_template_type','wp-page'),(3396,2020,'_elementor_version','3.6.5'),(3397,2020,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.560000000000000053290705182007513940334320068359375,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3398,2020,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3399,2020,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3400,2020,'_elementor_css','a:6:{s:4:\"time\";i:1652786536;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3402,2021,'_wp_page_template','default'),(3403,2021,'_elementor_edit_mode','builder'),(3404,2021,'_elementor_template_type','wp-page'),(3405,2021,'_elementor_version','3.6.5'),(3406,2021,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.560000000000000053290705182007513940334320068359375,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3407,2021,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3408,2021,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3409,2021,'_elementor_css','a:6:{s:4:\"time\";i:1652786711;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3410,2022,'_wp_page_template','default'),(3411,2022,'_elementor_edit_mode','builder'),(3412,2022,'_elementor_template_type','wp-page'),(3413,2022,'_elementor_version','3.6.5'),(3414,2022,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.560000000000000053290705182007513940334320068359375,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3415,2022,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3416,2022,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3417,2022,'_elementor_css','a:6:{s:4:\"time\";i:1652786711;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3418,2023,'_wp_page_template','default'),(3419,2023,'_elementor_edit_mode','builder'),(3420,2023,'_elementor_template_type','wp-page'),(3421,2023,'_elementor_version','3.6.5'),(3422,2023,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.560000000000000053290705182007513940334320068359375,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3423,2023,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3424,2023,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3425,2023,'_elementor_css','a:6:{s:4:\"time\";i:1652786711;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3427,2024,'_wp_page_template','default'),(3428,2024,'_elementor_edit_mode','builder'),(3429,2024,'_elementor_template_type','wp-page'),(3430,2024,'_elementor_version','3.6.5'),(3431,2024,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.560000000000000053290705182007513940334320068359375,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3432,2024,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3433,2024,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3434,2024,'_elementor_css','a:6:{s:4:\"time\";i:1652786761;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3435,2025,'_wp_page_template','default'),(3436,2025,'_elementor_edit_mode','builder'),(3437,2025,'_elementor_template_type','wp-page'),(3438,2025,'_elementor_version','3.6.5'),(3439,2025,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.560000000000000053290705182007513940334320068359375,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3440,2025,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3441,2025,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3442,2025,'_elementor_css','a:6:{s:4:\"time\";i:1652786761;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3443,2026,'_wp_page_template','default'),(3444,2026,'_elementor_edit_mode','builder'),(3445,2026,'_elementor_template_type','wp-page'),(3446,2026,'_elementor_version','3.6.5'),(3447,2026,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3448,2026,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3449,2026,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3450,2026,'_elementor_css','a:6:{s:4:\"time\";i:1652786761;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3451,2027,'_wp_page_template','default'),(3452,2027,'_elementor_edit_mode','builder'),(3453,2027,'_elementor_template_type','wp-page'),(3454,2027,'_elementor_version','3.6.5'),(3455,2027,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3456,2027,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3457,2027,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3458,2028,'_wp_page_template','default'),(3459,2028,'_elementor_edit_mode','builder'),(3460,2028,'_elementor_template_type','wp-page'),(3461,2028,'_elementor_version','3.6.5'),(3462,2028,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3463,2028,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3464,2028,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3465,2029,'_wp_page_template','default'),(3466,2029,'_elementor_edit_mode','builder'),(3467,2029,'_elementor_template_type','wp-page'),(3468,2029,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (3469,2029,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3470,2029,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3471,2029,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3473,2030,'_wp_page_template','default'),(3474,2030,'_elementor_edit_mode','builder'),(3475,2030,'_elementor_template_type','wp-page'),(3476,2030,'_elementor_version','3.6.5'),(3477,2030,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3478,2030,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3479,2030,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3480,2030,'_elementor_css','a:6:{s:4:\"time\";i:1652786804;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3481,2031,'_wp_page_template','default'),(3482,2031,'_elementor_edit_mode','builder'),(3483,2031,'_elementor_template_type','wp-page'),(3484,2031,'_elementor_version','3.6.5'),(3485,2031,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3486,2031,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3487,2031,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3488,2031,'_elementor_css','a:6:{s:4:\"time\";i:1652786804;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3489,2032,'_wp_page_template','default'),(3490,2032,'_elementor_edit_mode','builder'),(3491,2032,'_elementor_template_type','wp-page'),(3492,2032,'_elementor_version','3.6.5'),(3493,2032,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3494,2032,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3495,2032,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3496,2032,'_elementor_css','a:6:{s:4:\"time\";i:1652786804;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3498,2033,'_wp_page_template','default'),(3499,2033,'_elementor_edit_mode','builder'),(3500,2033,'_elementor_template_type','wp-page'),(3501,2033,'_elementor_version','3.6.5'),(3502,2033,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3503,2033,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3504,2033,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3505,2033,'_elementor_css','a:6:{s:4:\"time\";i:1652786973;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3506,2034,'_wp_page_template','default'),(3507,2034,'_elementor_edit_mode','builder'),(3508,2034,'_elementor_template_type','wp-page'),(3509,2034,'_elementor_version','3.6.5'),(3510,2034,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3511,2034,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3512,2034,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3513,2034,'_elementor_css','a:6:{s:4:\"time\";i:1652786973;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3514,2035,'_wp_page_template','default'),(3515,2035,'_elementor_edit_mode','builder'),(3516,2035,'_elementor_template_type','wp-page'),(3517,2035,'_elementor_version','3.6.5'),(3518,2035,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3519,2035,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3520,2035,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3521,2035,'_elementor_css','a:6:{s:4:\"time\";i:1652786973;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3523,2036,'_elementor_edit_mode','builder'),(3524,2036,'_elementor_template_type','page'),(3525,2036,'_elementor_version','3.6.5'),(3526,2037,'_elementor_edit_mode','builder'),(3527,2037,'_elementor_template_type','page'),(3528,2037,'_elementor_version','3.6.5'),(3529,2036,'_wp_page_template','default'),(3530,2036,'_elementor_data','[{\"id\":\"6afb0669\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"601ac46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a01955e\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"18dc3632\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d2a81d8\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30acb413\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"7ba305b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"72f4ff04\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"4f29f9d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"30104d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"272a5f6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"799c955e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"337d4dc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"15021e7f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cf50540\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"1d9f6309\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b41dc43\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"108272d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"51658b75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f3f1443\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"28f8adf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47fc8e17\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1110a955\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"293af4c3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3cc7672a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ef70b9e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2cc9f628\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"327a5089\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2943e67\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dd4e96e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c3f2d64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"67000fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38ba9f1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be10677\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54db8667\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"333a1be8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"118a4297\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1eec9db1\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74c951e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"641ed3f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7ddb34\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76dece3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"11103e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"34e00263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1dbc7e4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fc1e3c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e257911\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"79e6b83c\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"32bdb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"72864dd3\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"229457f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"19990c76\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d0993f7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"6c91775b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"523c3860\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"79521383\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dccf787\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"376ee201\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"55b7ab1f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6a1be32\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67b118b6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"444cc0d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75d10a11\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4affc925\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"7e2c93fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"79faae5e\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"2bf5eb17\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"16071e57\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"68db3e55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b1c68f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46e08442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"79b930c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"5a08c8fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2412faa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"21eb1750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13e1dcfd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"45ae7aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"79455f77\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2757ab3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"5e1c434f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22424a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"47bb660\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12436473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"7d109611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a405c6d\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd2fde0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48534a5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72ca4ded\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"6517158d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"4937e054\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2528362b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"536e62b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4c424192\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"16186b1a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"1bfc1590\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d9e27e6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e03a9c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"26305224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7279fb7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"703ae20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6bc63d4c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3f9dfe2a\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"1bbe1960\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"cb105c0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"218d40ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"a3dffae\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ecaa686\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"69df826a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4bc20246\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"260131db\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"41869994\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"75fb62ca\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb1e1fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3b750d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"110802f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2368d96d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"caa441f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18266168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"475814ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77b9a26a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55b0b88f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"168b63a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"74653804\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2f736cdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b52dc26\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"419c8270\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"366f857f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31318987\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"39238128\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3670a566\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5c5f39d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"34993c2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"42435814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2b8e5450\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"26743386\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a1c5570\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"537ebe03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d284587\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ba57497\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d1468be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1f1cc047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"110f590b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e9bc812\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f3fd022\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"110d4026\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54941a54\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4ce493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"6c8eb8be\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"223b25d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"40e5581a\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"24d896c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"32e3dd1f\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39de5f21\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"16d532ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a8e5771\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"169634cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34008391\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c3ce766\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ba31403\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"587985ce\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34bdf90\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"6ae04c10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"152b6e84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"208bd245\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc22ac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e081bdb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"2baf03ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a9c4b90\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6dcc1927\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4986e4ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7c0c9b81\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"d931b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2d6662c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"48753c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6392f27a\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4862dbfd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69d57ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"642caea\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"4a4efe2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3531,2038,'_elementor_edit_mode','builder'),(3532,2038,'_elementor_template_type','page'),(3533,2038,'_elementor_version','3.6.5'),(3534,2038,'_wp_page_template','default'),(3535,2038,'_elementor_data','[{\"id\":\"6afb0669\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"601ac46b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a01955e\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"18dc3632\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d2a81d8\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30acb413\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"7ba305b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"72f4ff04\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"4f29f9d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"30104d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"272a5f6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"799c955e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"337d4dc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"15021e7f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cf50540\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"1d9f6309\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b41dc43\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"108272d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"51658b75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f3f1443\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"28f8adf0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47fc8e17\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1110a955\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"293af4c3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3cc7672a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ef70b9e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2cc9f628\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"327a5089\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2943e67\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dd4e96e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c3f2d64\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"67000fcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"38ba9f1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"be10677\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54db8667\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"333a1be8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"118a4297\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1eec9db1\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"74c951e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"641ed3f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3a7ddb34\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76dece3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"11103e33\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"34e00263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1dbc7e4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fc1e3c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5e257911\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"79e6b83c\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"32bdb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"72864dd3\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"229457f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"19990c76\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d0993f7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"6c91775b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"523c3860\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"79521383\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2dccf787\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"376ee201\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"55b7ab1f\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6a1be32\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67b118b6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"444cc0d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"75d10a11\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4affc925\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"7e2c93fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"79faae5e\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"2bf5eb17\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"16071e57\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"68db3e55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6b1c68f8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46e08442\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"79b930c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"5a08c8fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2412faa2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"21eb1750\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13e1dcfd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"45ae7aee\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"79455f77\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2757ab3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"5e1c434f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"22424a58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"47bb660\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"12436473\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"7d109611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a405c6d\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd2fde0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48534a5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"72ca4ded\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"6517158d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"4937e054\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"2528362b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"536e62b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4c424192\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"16186b1a\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"1bfc1590\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d9e27e6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e03a9c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"26305224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7279fb7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"703ae20f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6bc63d4c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3f9dfe2a\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"1bbe1960\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"cb105c0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"218d40ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"a3dffae\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ecaa686\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"69df826a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"4bc20246\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"260131db\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"41869994\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"75fb62ca\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1eb1e1fa\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3b750d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"110802f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2368d96d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"caa441f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18266168\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"475814ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77b9a26a\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55b0b88f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"168b63a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"74653804\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"2f736cdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b52dc26\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"419c8270\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"366f857f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31318987\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"39238128\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3670a566\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5c5f39d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"34993c2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"42435814\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2b8e5450\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"26743386\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a1c5570\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"537ebe03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5d284587\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ba57497\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d1468be\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"1f1cc047\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"110f590b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e9bc812\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6f3fd022\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"110d4026\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54941a54\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4ce493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"6c8eb8be\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"223b25d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"40e5581a\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"24d896c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"32e3dd1f\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39de5f21\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"16d532ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a8e5771\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"169634cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"34008391\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c3ce766\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ba31403\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"587985ce\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34bdf90\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"6ae04c10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"152b6e84\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"208bd245\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc22ac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e081bdb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"2baf03ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a9c4b90\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6dcc1927\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4986e4ae\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7c0c9b81\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"d931b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2d6662c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"48753c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"6392f27a\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4862dbfd\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69d57ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"642caea\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"4a4efe2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3536,2036,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3546,2040,'_wp_page_template','default'),(3547,2040,'_elementor_edit_mode','builder'),(3548,2040,'_elementor_template_type','wp-page'),(3549,2040,'_elementor_version','3.6.5'),(3550,2040,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3551,2040,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3552,2040,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3553,2040,'_elementor_css','a:6:{s:4:\"time\";i:1652787360;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3554,2041,'_wp_page_template','default'),(3555,2041,'_elementor_edit_mode','builder'),(3556,2041,'_elementor_template_type','wp-page'),(3557,2041,'_elementor_version','3.6.5'),(3558,2041,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0c66d6d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"a24caf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b0a1ba3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c4b853a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"9e5ee9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"eb9e16c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"360e419\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e72fc67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"11c7e78\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"We Do Care About Your Health\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND OUT HOW WE CAN HELP?\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#0C608A\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"c4d6306\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"e3d1ce6\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"How to Stay Healthy For Life\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"FIND MORE INFORMATION\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#00BF54\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true},{\"id\":\"afd7e11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"a4039fd\",\"elType\":\"widget\",\"settings\":{\"valuable_groups\":[{\"valuable_title\":\"Providing the Best Health Solutions\",\"_id\":\"735455d\",\"valuable_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"sunday\":\"Sunday\",\"sunday_hr\":\"8.00 - 17.00\",\"monday\":\"Monday\",\"monday_hr\":\"8.00 - 17.00\",\"tuesday\":\"Tuesday\",\"tuesday_hr\":\"8.00 - 17.00\",\"wednesday\":\"Wednesday\",\"wednesday_hr\":\"8.00 - 17.00\",\"thursday\":\"Thursday\",\"thursday_hr\":\"8.00 - 17.00\",\"friday\":\"Friday\",\"friday_hr\":\"8.00 - 17.00\",\"saturday\":\"Saturday\",\"saturday_hr\":\"8.00 - 17.00\",\"valuable_content\":\"LEARN MORE ABOUT THEM\",\"more_link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"back_color\":\"#02AFEC\"}],\"_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_unique_valuable\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3559,2041,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3560,2041,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3561,2041,'_elementor_css','a:6:{s:4:\"time\";i:1652787360;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3562,2042,'_wp_page_template','default'),(3563,2042,'_elementor_edit_mode','builder'),(3564,2042,'_elementor_template_type','wp-page'),(3565,2042,'_elementor_version','3.6.5'),(3566,2042,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3567,2042,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3568,2042,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3569,2042,'_elementor_css','a:6:{s:4:\"time\";i:1652787360;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3570,2043,'_wp_page_template','default'),(3571,2043,'_elementor_edit_mode','builder'),(3572,2043,'_elementor_template_type','wp-page'),(3573,2043,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (3574,2043,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3575,2043,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3576,2043,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3577,2044,'_wp_page_template','default'),(3578,2044,'_elementor_edit_mode','builder'),(3579,2044,'_elementor_template_type','wp-page'),(3580,2044,'_elementor_version','3.6.5'),(3581,2044,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a11c241\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]}},\"elements\":[{\"id\":\"1ececa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"cc4a80e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Save Time. Feel Better.\",\"description_text\":\"Skip The Waiting Room! Register Online Before You Arrive.<br>\\n<a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"button has-icon\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\",\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Bitmap.jpg\",\"id\":1846,\"alt\":\"\",\"source\":\"library\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3582,2044,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3583,2044,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3584,2045,'_wp_page_template','default'),(3585,2045,'_elementor_edit_mode','builder'),(3586,2045,'_elementor_template_type','wp-page'),(3587,2045,'_elementor_version','3.6.5'),(3588,2045,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3589,2045,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3590,2045,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3591,2046,'_wp_page_template','default'),(3592,2046,'_elementor_edit_mode','builder'),(3593,2046,'_elementor_template_type','wp-page'),(3594,2046,'_elementor_version','3.6.5'),(3595,2046,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3596,2046,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3597,2046,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3598,2047,'_wp_page_template','default'),(3599,2047,'_elementor_edit_mode','builder'),(3600,2047,'_elementor_template_type','wp-page'),(3601,2047,'_elementor_version','3.6.5'),(3602,2047,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0523b3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6cf5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7affa32\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"25a5c8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"isInner\":true},{\"id\":\"5aa0080\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":71.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"space_between_widgets\":0},\"elements\":[{\"id\":\"f641191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Below is our mission\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#029967\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"fadeIn\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19b21b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u201c Our mission is to enhence health<br>and well-being by providing the best total healthcare. \\u201d\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Fraunces\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5f546d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a9b207d\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"839562e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d58740d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"286f5f8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"c078f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"21deb39\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u200bDiscover the key facts and figures behind Clilab\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"fc10163\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"be4d98c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"cae0531\",\"elType\":\"section\",\"settings\":{\"structure\":\"50\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"76f0f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"11db5f5\",\"elType\":\"widget\",\"settings\":{\"ending_number\":4837,\"thousand_separator_char\":\".\",\"title\":\"Patients Served Since 2008\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E4DEE8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d16f2f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"cfa6b21\",\"elType\":\"widget\",\"settings\":{\"ending_number\":134,\"thousand_separator_char\":\".\",\"title\":\"Volunteer Doctors  Support\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#F1D7D7\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6ec414e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"1aea057\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1.600000000000000088817841970012523233890533447265625,\"prefix\":\"$\",\"thousand_separator_char\":\".\",\"title\":\"Million Given in In-Kind Services\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#D4F7E8\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"c781ff6\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"0cace9a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":450,\"suffix\":\"+\",\"thousand_separator_char\":\".\",\"title\":\"Free Patient Visits Each Month\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#E6EBEC\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3ac413e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":null,\"_inline_size_tablet\":33.33333329999999961046341923065483570098876953125},\"elements\":[{\"id\":\"2416a02\",\"elType\":\"widget\",\"settings\":{\"ending_number\":99,\"suffix\":\"%\",\"thousand_separator_char\":\".\",\"title\":\"Our Client Satisfaction Rate\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FDE4E9\",\"_mask_switch\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_mask_size_mobile\":\"cover\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"38ccc67\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"9b64c98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eca6c69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3603,2047,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3604,2047,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3605,2048,'_wp_page_template','default'),(3606,2048,'_elementor_edit_mode','builder'),(3607,2048,'_elementor_template_type','wp-page'),(3608,2048,'_elementor_version','3.6.5'),(3609,2048,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3610,2048,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(3611,2048,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3621,2050,'_wp_page_template','default'),(3622,2050,'_elementor_edit_mode','builder'),(3623,2050,'_elementor_template_type','wp-page'),(3624,2050,'_elementor_version','3.6.5'),(3625,2050,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3626,2050,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3627,2050,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3628,2051,'_wp_page_template','default'),(3629,2051,'_elementor_edit_mode','builder'),(3630,2051,'_elementor_template_type','wp-page'),(3631,2051,'_elementor_version','3.6.5'),(3632,2051,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1432eedd\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[{\"id\":\"43342a51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"44d76cc4\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"35cbcf87\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"42151f2c\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 3\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\" slidertitle=\\\"Homepage 3\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eec28aa\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"38db5d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2deadb27\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"62fc0a8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3341d3e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"46c4333e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3bc7bfa5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"2ce9330d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick links to the information and resources you need.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7e7312d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"65adc848\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need For Support\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a061173\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"7e3e4b1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16c11986\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fint a Location\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/square-pin-1.svg\",\"id\":1759},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pay a Bill\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/cheque-3.svg\",\"id\":1750},\"library\":\"svg\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f6b9f74\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35d7edec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_color_b\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"354294fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"60ecc055\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"html_tag\":\"div\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1b006d07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"22cd4a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"How can we help you?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7a204f3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"46393768\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. \",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"header_size\":\"p\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ee5a3b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e867be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"3a090820\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-28-13.jpeg\",\"id\":1761,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"We Do Care About Your Health\",\"services_content\":\"FIND OUT HOW WE CAN HELP?\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"699c858e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"25857df7\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-35-13.jpeg\",\"id\":1762,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"How to Stay Healthy For Life\",\"services_content\":\"FIND MORE INFORMATION\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true},{\"id\":\"78146a68\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"24d844f6\",\"elType\":\"widget\",\"settings\":{\"service_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/Rectangle-Copy-36-13.jpeg\",\"id\":1763,\"alt\":\"\",\"source\":\"library\"},\"services_title\":\"Providing the Best Health Solutions\",\"services_content\":\"LEARN MORE ABOUT THEM\",\"services_more\":\"Read More\",\"services_more_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"sasstp_title_typography_typography\":\"custom\",\"sasstp_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"sasstp_title_typography_font_weight\":\"300\",\"sasstp_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_weight\":\"500\",\"content_color\":\"#029967\"},\"elements\":[],\"widgetType\":\"namedical_basic_services\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"604549c1\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"515b0179\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2248b7b3\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"7bbffb5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"78bb416b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e5a4379\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2563f371\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"62efa491\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53a79a5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1310,\"sizes\":[]},\"gap\":\"extended\",\"html_tag\":\"div\",\"structure\":\"20\"},\"elements\":[{\"id\":\"175b25e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d815955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner1-10.jpeg\",\"id\":1853,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"15bb5b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fe4c55f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/banner2-8.jpeg\",\"id\":1854,\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Vaccine Covid-19\",\"description_text\":\"Secure delivery without contacting\\n<a class=\\\"button white sm\\\">Shop Now<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"right\",\"text_align\":\"center\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"217dd154\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\"},\"elements\":[{\"id\":\"63ed9132\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"37fff69\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"5f13aec6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"204ea8be\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b2061a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"332aeec2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"7a7903de\",\"elType\":\"widget\",\"settings\":{\"title\":\"From Our Blog - Medical News, Clinical Trials and Guidelines\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6a3fc3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"7169ac7b\",\"elType\":\"widget\",\"settings\":{\"text\":\"See More Posts\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/blog\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1274238e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"html_tag\":\"div\",\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f02345a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18aa7579\",\"elType\":\"widget\",\"settings\":{\"blog_pagination\":\"\",\"read_more_txt\":\"Read More\"},\"elements\":[],\"widgetType\":\"namedical_basic_blog\"},{\"id\":\"374af809\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3633,2051,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3634,2051,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3635,2052,'_wp_page_template','default'),(3636,2052,'_elementor_edit_mode','builder'),(3637,2052,'_elementor_template_type','wp-page'),(3638,2052,'_elementor_version','3.6.5'),(3639,2052,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3640,2052,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(3641,2052,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3643,2053,'_wp_page_template','default'),(3644,2053,'_elementor_edit_mode','builder'),(3645,2053,'_elementor_template_type','wp-page'),(3646,2053,'_elementor_version','3.6.5'),(3647,2053,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3648,2053,'_elementor_page_assets','a:0:{}'),(3649,2053,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3650,2053,'_elementor_css','a:6:{s:4:\"time\";i:1652787614;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3651,2054,'_wp_page_template','default'),(3652,2054,'_elementor_edit_mode','builder'),(3653,2054,'_elementor_template_type','wp-page'),(3654,2054,'_elementor_version','3.6.5'),(3655,2054,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3656,2054,'_elementor_page_assets','a:0:{}'),(3657,2054,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3658,2054,'_elementor_css','a:6:{s:4:\"time\";i:1652787614;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3659,2055,'_wp_page_template','default'),(3660,2055,'_elementor_edit_mode','builder'),(3661,2055,'_elementor_template_type','wp-page'),(3662,2055,'_elementor_version','3.6.5'),(3663,2055,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3664,2055,'_elementor_page_assets','a:0:{}'),(3665,2055,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3666,2055,'_elementor_css','a:6:{s:4:\"time\";i:1652787614;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:2;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3668,2056,'_edit_lock','1652788621:1'),(3669,2057,'_wp_page_template','default'),(3670,2057,'_elementor_edit_mode','builder'),(3671,2057,'_elementor_template_type','wp-page'),(3672,2057,'_elementor_version','3.6.5'),(3673,2057,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3674,2057,'_elementor_page_assets','a:0:{}'),(3675,2057,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3676,2057,'_elementor_css','a:6:{s:4:\"time\";i:1652787660;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3677,2058,'_wp_page_template','default'),(3678,2058,'_elementor_edit_mode','builder'),(3679,2058,'_elementor_template_type','wp-page'),(3680,2058,'_elementor_version','3.6.5'),(3681,2058,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3682,2058,'_elementor_page_assets','a:0:{}'),(3683,2058,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3684,2058,'_elementor_css','a:6:{s:4:\"time\";i:1652787660;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3685,2059,'_wp_page_template','default'),(3686,2059,'_elementor_edit_mode','builder'),(3687,2059,'_elementor_template_type','wp-page'),(3688,2059,'_elementor_version','3.6.5'),(3689,2059,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3690,2059,'_elementor_page_assets','a:0:{}'),(3691,2059,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3692,2059,'_elementor_css','a:6:{s:4:\"time\";i:1652787660;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3702,2061,'_wp_page_template','default'),(3703,2061,'_elementor_edit_mode','builder'),(3704,2061,'_elementor_template_type','wp-page'),(3705,2061,'_elementor_version','3.6.5'),(3706,2061,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3707,2061,'_elementor_page_assets','a:0:{}'),(3708,2061,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3709,2062,'_wp_page_template','default'),(3710,2062,'_elementor_edit_mode','builder'),(3711,2062,'_elementor_template_type','wp-page'),(3712,2062,'_elementor_version','3.6.5'),(3713,2062,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D4F7E8\",\"background_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/bg-1.jpg\",\"id\":1842,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3714,2062,'_elementor_page_assets','a:0:{}'),(3715,2062,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3716,2063,'_wp_page_template','default'),(3717,2063,'_elementor_edit_mode','builder'),(3718,2063,'_elementor_template_type','wp-page'),(3719,2063,'_elementor_version','3.6.5'),(3720,2063,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#A0BCE4\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3721,2063,'_elementor_page_assets','a:0:{}'),(3722,2063,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3730,2065,'_wp_page_template','default'),(3731,2065,'_elementor_edit_mode','builder'),(3732,2065,'_elementor_template_type','wp-page'),(3733,2065,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (3734,2065,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#A0BCE4\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3735,2065,'_elementor_page_assets','a:0:{}'),(3736,2065,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3737,2066,'_wp_page_template','default'),(3738,2066,'_elementor_edit_mode','builder'),(3739,2066,'_elementor_template_type','wp-page'),(3740,2066,'_elementor_version','3.6.5'),(3741,2066,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#A0BCE4\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3742,2066,'_elementor_page_assets','a:0:{}'),(3743,2066,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3744,2067,'_wp_page_template','default'),(3745,2067,'_elementor_edit_mode','builder'),(3746,2067,'_elementor_template_type','wp-page'),(3747,2067,'_elementor_version','3.6.5'),(3748,2067,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#A0BCE4\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3749,2067,'_elementor_page_assets','a:0:{}'),(3750,2067,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3751,2068,'_wp_page_template','default'),(3752,2068,'_elementor_edit_mode','builder'),(3753,2068,'_elementor_template_type','wp-page'),(3754,2068,'_elementor_version','3.6.5'),(3755,2068,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#A0BCE4\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3756,2068,'_elementor_page_assets','a:0:{}'),(3757,2068,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3758,2069,'_wp_page_template','default'),(3759,2069,'_elementor_edit_mode','builder'),(3760,2069,'_elementor_template_type','wp-page'),(3761,2069,'_elementor_version','3.6.5'),(3762,2069,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#A0BCE4\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3763,2069,'_elementor_page_assets','a:0:{}'),(3764,2069,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3765,2070,'_wp_page_template','default'),(3766,2070,'_elementor_edit_mode','builder'),(3767,2070,'_elementor_template_type','wp-page'),(3768,2070,'_elementor_version','3.6.5'),(3769,2070,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#48507A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3770,2070,'_elementor_page_assets','a:0:{}'),(3771,2070,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3772,2071,'_wp_page_template','default'),(3773,2071,'_elementor_edit_mode','builder'),(3774,2071,'_elementor_template_type','wp-page'),(3775,2071,'_elementor_version','3.6.5'),(3776,2071,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#48507A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3777,2071,'_elementor_page_assets','a:0:{}'),(3778,2071,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3779,2072,'_wp_page_template','default'),(3780,2072,'_elementor_edit_mode','builder'),(3781,2072,'_elementor_template_type','wp-page'),(3782,2072,'_elementor_version','3.6.5'),(3783,2072,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D4F7E8\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#48507A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3784,2072,'_elementor_page_assets','a:0:{}'),(3785,2072,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3786,2073,'_wp_page_template','default'),(3787,2073,'_elementor_edit_mode','builder'),(3788,2073,'_elementor_template_type','wp-page'),(3789,2073,'_elementor_version','3.6.5'),(3790,2073,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#48507A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#48507A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3791,2073,'_elementor_page_assets','a:0:{}'),(3792,2073,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3794,2074,'_wp_page_template','default'),(3795,2074,'_elementor_edit_mode','builder'),(3796,2074,'_elementor_template_type','wp-page'),(3797,2074,'_elementor_version','3.6.5'),(3798,2074,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#48507A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#48507A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3799,2074,'_elementor_page_assets','a:0:{}'),(3800,2074,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3801,2074,'_elementor_css','a:6:{s:4:\"time\";i:1652788552;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3802,2075,'_wp_page_template','default'),(3803,2075,'_elementor_edit_mode','builder'),(3804,2075,'_elementor_template_type','wp-page'),(3805,2075,'_elementor_version','3.6.5'),(3806,2075,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#48507A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#48507A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3807,2075,'_elementor_page_assets','a:0:{}'),(3808,2075,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3809,2075,'_elementor_css','a:6:{s:4:\"time\";i:1652788552;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3810,2076,'_wp_page_template','default'),(3811,2076,'_elementor_edit_mode','builder'),(3812,2076,'_elementor_template_type','wp-page'),(3813,2076,'_elementor_version','3.6.5'),(3814,2076,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D6F8E9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D6F8E9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3815,2076,'_elementor_page_assets','a:0:{}'),(3816,2076,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3817,2076,'_elementor_css','a:6:{s:4:\"time\";i:1652788552;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3818,2077,'_wp_page_template','default'),(3819,2077,'_elementor_edit_mode','builder'),(3820,2077,'_elementor_template_type','wp-page'),(3821,2077,'_elementor_version','3.6.5'),(3822,2077,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D6F8E9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D6F8E9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3823,2077,'_elementor_page_assets','a:0:{}'),(3824,2077,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3825,2078,'_wp_page_template','default'),(3826,2078,'_elementor_edit_mode','builder'),(3827,2078,'_elementor_template_type','wp-page'),(3828,2078,'_elementor_version','3.6.5'),(3829,2078,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#D6F8E9\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#D6F8E9\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3830,2078,'_elementor_page_assets','a:0:{}'),(3831,2078,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3832,2079,'_wp_page_template','default'),(3833,2079,'_elementor_edit_mode','builder'),(3834,2079,'_elementor_template_type','wp-page'),(3835,2079,'_elementor_version','3.6.5'),(3836,2079,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3837,2079,'_elementor_page_assets','a:0:{}'),(3838,2079,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3840,2056,'_customize_restore_dismissed','1'),(3841,2080,'_wp_trash_meta_status','publish'),(3842,2080,'_wp_trash_meta_time','1652788851'),(3843,2081,'_wp_trash_meta_status','publish'),(3844,2081,'_wp_trash_meta_time','1652788868'),(3845,2082,'_wp_attached_file','2022/05/vdental-e1652789946855.png'),(3846,2082,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:71;s:4:\"file\";s:34:\"2022/05/vdental-e1652789946855.png\";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:{}}}'),(3847,2083,'_edit_lock','1652789703:1'),(3848,2083,'_wp_trash_meta_status','publish'),(3849,2083,'_wp_trash_meta_time','1652789742'),(3850,2082,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1707;s:6:\"height\";i:270;s:4:\"file\";s:11:\"vdental.png\";}s:18:\"full-1652789817894\";a:3:{s:5:\"width\";i:235;s:6:\"height\";i:37;s:4:\"file\";s:26:\"vdental-e1652789778665.png\";}s:18:\"full-1652789930533\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:63;s:4:\"file\";s:26:\"vdental-e1652789849269.png\";}}'),(3851,2084,'_wp_trash_meta_status','publish'),(3852,2084,'_wp_trash_meta_time','1652789779'),(3853,2085,'_edit_lock','1652790075:1'),(3854,2086,'_wp_trash_meta_status','publish'),(3855,2086,'_wp_trash_meta_time','1652789830'),(3856,2085,'_customize_restore_dismissed','1'),(3857,2087,'_wp_trash_meta_status','publish'),(3858,2087,'_wp_trash_meta_time','1652789850'),(3859,2088,'_edit_lock','1652789972:1'),(3860,2088,'_wp_trash_meta_status','publish'),(3861,2088,'_wp_trash_meta_time','1652789974'),(3862,2085,'_wp_trash_meta_status','publish'),(3863,2085,'_wp_trash_meta_time','1652790080'),(3864,2089,'_edit_lock','1652795626:1'),(3865,2090,'_wp_page_template','default'),(3866,2090,'_elementor_edit_mode','builder'),(3867,2090,'_elementor_template_type','wp-page'),(3868,2090,'_elementor_version','3.6.5'),(3869,2090,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3870,2090,'_elementor_page_assets','a:0:{}'),(3871,2090,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3872,2090,'_elementor_css','a:6:{s:4:\"time\";i:1652788792;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3873,2091,'_wp_page_template','default'),(3874,2091,'_elementor_edit_mode','builder'),(3875,2091,'_elementor_template_type','wp-page'),(3876,2091,'_elementor_version','3.6.5'),(3877,2091,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3878,2091,'_elementor_page_assets','a:0:{}'),(3879,2091,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3880,2091,'_elementor_css','a:6:{s:4:\"time\";i:1652788792;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3881,2092,'_wp_page_template','default'),(3882,2092,'_elementor_edit_mode','builder'),(3883,2092,'_elementor_template_type','wp-page'),(3884,2092,'_elementor_version','3.6.5'),(3885,2092,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3886,2092,'_elementor_page_assets','a:0:{}'),(3887,2092,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3888,2092,'_elementor_css','a:6:{s:4:\"time\";i:1652788792;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3890,2089,'_customize_restore_dismissed','1'),(3891,2093,'_edit_lock','1652790298:1'),(3892,2094,'_wp_page_template','default'),(3893,2094,'_elementor_edit_mode','builder'),(3894,2094,'_elementor_template_type','wp-page'),(3895,2094,'_elementor_version','3.6.5'),(3896,2094,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3897,2094,'_elementor_page_assets','a:0:{}'),(3898,2094,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3899,2094,'_elementor_css','a:6:{s:4:\"time\";i:1652790186;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3900,2095,'_wp_page_template','default'),(3901,2095,'_elementor_edit_mode','builder'),(3902,2095,'_elementor_template_type','wp-page'),(3903,2095,'_elementor_version','3.6.5'),(3904,2095,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medical Services of The Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Clilab Health Services Clinic we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Child Care Assistance\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Flu \\/ Vaccine Shot\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Health Checks\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3905,2095,'_elementor_page_assets','a:0:{}'),(3906,2095,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3907,2095,'_elementor_css','a:6:{s:4:\"time\";i:1652790186;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3908,2096,'_wp_page_template','default'),(3909,2096,'_elementor_edit_mode','builder'),(3910,2096,'_elementor_template_type','wp-page'),(3911,2096,'_elementor_version','3.6.5'),(3912,2096,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3913,2096,'_elementor_page_assets','a:0:{}'),(3914,2096,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3915,2096,'_elementor_css','a:6:{s:4:\"time\";i:1652790186;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3917,2097,'_wp_page_template','default'),(3918,2097,'_elementor_edit_mode','builder'),(3919,2097,'_elementor_template_type','wp-page'),(3920,2097,'_elementor_version','3.6.5'),(3921,2097,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3922,2097,'_elementor_page_assets','a:0:{}'),(3923,2097,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3924,2097,'_elementor_css','a:6:{s:4:\"time\";i:1652790436;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3925,2098,'_wp_page_template','default'),(3926,2098,'_elementor_edit_mode','builder'),(3927,2098,'_elementor_template_type','wp-page'),(3928,2098,'_elementor_version','3.6.5'),(3929,2098,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hearing and Vision\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3930,2098,'_elementor_page_assets','a:0:{}'),(3931,2098,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3932,2098,'_elementor_css','a:6:{s:4:\"time\";i:1652790436;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3933,2099,'_wp_page_template','default'),(3934,2099,'_elementor_edit_mode','builder'),(3935,2099,'_elementor_template_type','wp-page'),(3936,2099,'_elementor_version','3.6.5'),(3937,2099,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3938,2099,'_elementor_page_assets','a:0:{}'),(3939,2099,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3940,2099,'_elementor_css','a:6:{s:4:\"time\";i:1652790436;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3941,2100,'_wp_page_template','default'),(3942,2100,'_elementor_edit_mode','builder'),(3943,2100,'_elementor_template_type','wp-page'),(3944,2100,'_elementor_version','3.6.5'),(3945,2100,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3946,2100,'_elementor_page_assets','a:0:{}');
INSERT INTO `wp_postmeta` VALUES (3947,2100,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3948,2101,'_wp_page_template','default'),(3949,2101,'_elementor_edit_mode','builder'),(3950,2101,'_elementor_template_type','wp-page'),(3951,2101,'_elementor_version','3.6.5'),(3952,2101,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Mental Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3953,2101,'_elementor_page_assets','a:0:{}'),(3954,2101,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3955,2102,'_wp_page_template','default'),(3956,2102,'_elementor_edit_mode','builder'),(3957,2102,'_elementor_template_type','wp-page'),(3958,2102,'_elementor_version','3.6.5'),(3959,2102,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3960,2102,'_elementor_page_assets','a:0:{}'),(3961,2102,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3962,2103,'_wp_page_template','default'),(3963,2103,'_elementor_edit_mode','builder'),(3964,2103,'_elementor_template_type','wp-page'),(3965,2103,'_elementor_version','3.6.5'),(3966,2103,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3967,2103,'_elementor_page_assets','a:0:{}'),(3968,2103,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3969,2104,'_wp_page_template','default'),(3970,2104,'_elementor_edit_mode','builder'),(3971,2104,'_elementor_template_type','wp-page'),(3972,2104,'_elementor_version','3.6.5'),(3973,2104,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Pharmacy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3974,2104,'_elementor_page_assets','a:0:{}'),(3975,2104,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3976,2105,'_wp_page_template','default'),(3977,2105,'_elementor_edit_mode','builder'),(3978,2105,'_elementor_template_type','wp-page'),(3979,2105,'_elementor_version','3.6.5'),(3980,2105,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3981,2105,'_elementor_page_assets','a:0:{}'),(3982,2105,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3983,2106,'_wp_page_template','default'),(3984,2106,'_elementor_edit_mode','builder'),(3985,2106,'_elementor_template_type','wp-page'),(3986,2106,'_elementor_version','3.6.5'),(3987,2106,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3988,2106,'_elementor_page_assets','a:0:{}'),(3989,2106,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3990,2107,'_wp_page_template','default'),(3991,2107,'_elementor_edit_mode','builder'),(3992,2107,'_elementor_template_type','wp-page'),(3993,2107,'_elementor_version','3.6.5'),(3994,2107,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Physical Therapy\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Reproductive Health \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Surgery\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Urgent Care\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3995,2107,'_elementor_page_assets','a:0:{}'),(3996,2107,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(3997,2108,'_wp_page_template','default'),(3998,2108,'_elementor_edit_mode','builder'),(3999,2108,'_elementor_template_type','wp-page'),(4000,2108,'_elementor_version','3.6.5'),(4001,2108,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4002,2108,'_elementor_page_assets','a:0:{}'),(4003,2108,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4005,2093,'_customize_restore_dismissed','1'),(4006,2109,'_edit_lock','1652790896:1'),(4007,2110,'_wp_page_template','default'),(4008,2110,'_elementor_edit_mode','builder'),(4009,2110,'_elementor_template_type','wp-page'),(4010,2110,'_elementor_version','3.6.5'),(4011,2110,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4012,2110,'_elementor_page_assets','a:0:{}'),(4013,2110,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4014,2110,'_elementor_css','a:6:{s:4:\"time\";i:1652790601;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4015,2111,'_wp_page_template','default'),(4016,2111,'_elementor_edit_mode','builder'),(4017,2111,'_elementor_template_type','wp-page'),(4018,2111,'_elementor_version','3.6.5'),(4019,2111,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4020,2111,'_elementor_page_assets','a:0:{}'),(4021,2111,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4022,2111,'_elementor_css','a:6:{s:4:\"time\";i:1652790601;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4023,2112,'_wp_page_template','default'),(4024,2112,'_elementor_edit_mode','builder'),(4025,2112,'_elementor_template_type','wp-page'),(4026,2112,'_elementor_version','3.6.5'),(4027,2112,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4028,2112,'_elementor_page_assets','a:0:{}'),(4029,2112,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4030,2112,'_elementor_css','a:6:{s:4:\"time\";i:1652790601;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4032,2113,'_wp_page_template','default'),(4033,2113,'_elementor_edit_mode','builder'),(4034,2113,'_elementor_template_type','wp-page'),(4035,2113,'_elementor_version','3.6.5'),(4036,2113,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4037,2113,'_elementor_page_assets','a:0:{}'),(4038,2113,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4039,2113,'_elementor_css','a:6:{s:4:\"time\";i:1652790697;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4040,2114,'_wp_page_template','default'),(4041,2114,'_elementor_edit_mode','builder'),(4042,2114,'_elementor_template_type','wp-page'),(4043,2114,'_elementor_version','3.6.5'),(4044,2114,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4045,2114,'_elementor_page_assets','a:0:{}'),(4046,2114,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4047,2114,'_elementor_css','a:6:{s:4:\"time\";i:1652790697;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4048,2115,'_wp_page_template','default'),(4049,2115,'_elementor_edit_mode','builder'),(4050,2115,'_elementor_template_type','wp-page'),(4051,2115,'_elementor_version','3.6.5'),(4052,2115,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4053,2115,'_elementor_page_assets','a:0:{}'),(4054,2115,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4055,2115,'_elementor_css','a:6:{s:4:\"time\";i:1652790697;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4057,2109,'_wp_trash_meta_status','publish'),(4058,2109,'_wp_trash_meta_time','1652790920'),(4059,2116,'_edit_lock','1652791076:1'),(4060,2116,'_wp_trash_meta_status','publish'),(4061,2116,'_wp_trash_meta_time','1652791095'),(4062,2117,'_wp_trash_meta_status','publish'),(4063,2117,'_wp_trash_meta_time','1652791165'),(4064,2118,'_wp_attached_file','2022/05/test.png'),(4065,2118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1680;s:6:\"height\";i:532;s:4:\"file\";s:16:\"2022/05/test.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"test-300x95.png\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"test-1024x324.png\";s:5:\"width\";i:1024;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"test-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"test-768x243.png\";s:5:\"width\";i:768;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"test-1536x486.png\";s:5:\"width\";i:1536;s:6:\"height\";i:486;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"test-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"test-600x190.png\";s:5:\"width\";i:600;s:6:\"height\";i:190;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"test-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"test-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"test-600x190.png\";s:5:\"width\";i:600;s:6:\"height\";i:190;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"test-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4066,2119,'_wp_page_template','default'),(4067,2119,'_elementor_edit_mode','builder'),(4068,2119,'_elementor_template_type','wp-page'),(4069,2119,'_elementor_version','3.6.5'),(4070,2119,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4071,2119,'_elementor_page_assets','a:0:{}'),(4072,2119,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4073,2119,'_elementor_css','a:6:{s:4:\"time\";i:1652790722;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4074,2120,'_wp_page_template','default'),(4075,2120,'_elementor_edit_mode','builder'),(4076,2120,'_elementor_template_type','wp-page'),(4077,2120,'_elementor_version','3.6.5'),(4078,2120,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4079,2120,'_elementor_page_assets','a:0:{}'),(4080,2120,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4081,2120,'_elementor_css','a:6:{s:4:\"time\";i:1652790722;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4082,2121,'_wp_page_template','default'),(4083,2121,'_elementor_edit_mode','builder'),(4084,2121,'_elementor_template_type','wp-page'),(4085,2121,'_elementor_version','3.6.5'),(4086,2121,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4087,2121,'_elementor_page_assets','a:0:{}'),(4088,2121,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4089,2121,'_elementor_css','a:6:{s:4:\"time\";i:1652790722;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4091,2122,'_wp_page_template','default'),(4092,2122,'_elementor_edit_mode','builder'),(4093,2122,'_elementor_template_type','wp-page'),(4094,2122,'_elementor_version','3.6.5'),(4095,2122,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4096,2122,'_elementor_page_assets','a:0:{}'),(4097,2122,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4098,2122,'_elementor_css','a:6:{s:4:\"time\";i:1652791564;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4099,2123,'_wp_page_template','default'),(4100,2123,'_elementor_edit_mode','builder'),(4101,2123,'_elementor_template_type','wp-page'),(4102,2123,'_elementor_version','3.6.5'),(4103,2123,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4104,2123,'_elementor_page_assets','a:0:{}'),(4105,2123,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4106,2123,'_elementor_css','a:6:{s:4:\"time\";i:1652791564;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4107,2124,'_wp_page_template','default'),(4108,2124,'_elementor_edit_mode','builder'),(4109,2124,'_elementor_template_type','wp-page'),(4110,2124,'_elementor_version','3.6.5'),(4111,2124,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4112,2124,'_elementor_page_assets','a:0:{}'),(4113,2124,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4114,2124,'_elementor_css','a:6:{s:4:\"time\";i:1652791564;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4116,2125,'_wp_page_template','default'),(4117,2125,'_elementor_edit_mode','builder'),(4118,2125,'_elementor_template_type','wp-page'),(4119,2125,'_elementor_version','3.6.5'),(4120,2125,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4121,2125,'_elementor_page_assets','a:0:{}'),(4122,2125,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4123,2125,'_elementor_css','a:6:{s:4:\"time\";i:1652791654;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4124,2126,'_wp_page_template','default'),(4125,2126,'_elementor_edit_mode','builder'),(4126,2126,'_elementor_template_type','wp-page'),(4127,2126,'_elementor_version','3.6.5'),(4128,2126,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4129,2126,'_elementor_page_assets','a:0:{}'),(4130,2126,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4131,2126,'_elementor_css','a:6:{s:4:\"time\";i:1652791654;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4132,2127,'_wp_page_template','default'),(4133,2127,'_elementor_edit_mode','builder'),(4134,2127,'_elementor_template_type','wp-page'),(4135,2127,'_elementor_version','3.6.5'),(4136,2127,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4137,2127,'_elementor_page_assets','a:0:{}'),(4138,2127,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4139,2127,'_elementor_css','a:6:{s:4:\"time\";i:1652791654;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4141,2128,'_wp_page_template','default'),(4142,2128,'_elementor_edit_mode','builder'),(4143,2128,'_elementor_template_type','wp-page'),(4144,2128,'_elementor_version','3.6.5'),(4145,2128,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4146,2128,'_elementor_page_assets','a:0:{}'),(4147,2128,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4148,2128,'_elementor_css','a:6:{s:4:\"time\";i:1652791694;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4149,2129,'_wp_page_template','default'),(4150,2129,'_elementor_edit_mode','builder'),(4151,2129,'_elementor_template_type','wp-page'),(4152,2129,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (4153,2129,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_size\":\"contain\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4154,2129,'_elementor_page_assets','a:0:{}'),(4155,2129,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4156,2129,'_elementor_css','a:6:{s:4:\"time\";i:1652791694;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4157,2130,'_wp_page_template','default'),(4158,2130,'_elementor_edit_mode','builder'),(4159,2130,'_elementor_template_type','wp-page'),(4160,2130,'_elementor_version','3.6.5'),(4161,2130,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4162,2130,'_elementor_page_assets','a:0:{}'),(4163,2130,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4164,2130,'_elementor_css','a:6:{s:4:\"time\";i:1652791694;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4166,2131,'_wp_trash_meta_status','publish'),(4167,2131,'_wp_trash_meta_time','1652791857'),(4168,2132,'_wp_page_template','default'),(4169,2132,'_elementor_edit_mode','builder'),(4170,2132,'_elementor_template_type','wp-page'),(4171,2132,'_elementor_version','3.6.5'),(4172,2132,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4173,2132,'_elementor_page_assets','a:0:{}'),(4174,2132,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4175,2132,'_elementor_css','a:6:{s:4:\"time\";i:1652791726;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4176,2133,'_wp_page_template','default'),(4177,2133,'_elementor_edit_mode','builder'),(4178,2133,'_elementor_template_type','wp-page'),(4179,2133,'_elementor_version','3.6.5'),(4180,2133,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4181,2133,'_elementor_page_assets','a:0:{}'),(4182,2133,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4183,2133,'_elementor_css','a:6:{s:4:\"time\";i:1652791726;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4184,2134,'_wp_page_template','default'),(4185,2134,'_elementor_edit_mode','builder'),(4186,2134,'_elementor_template_type','wp-page'),(4187,2134,'_elementor_version','3.6.5'),(4188,2134,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"The Vijaya clinic is full of professionalism, modern equipment, very friendly staff. Doctor took care of my teeth competently and brought back a wide smile on my face. I heartily recommend!\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4189,2134,'_elementor_page_assets','a:0:{}'),(4190,2134,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4191,2134,'_elementor_css','a:6:{s:4:\"time\";i:1652791726;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4192,2135,'_wp_page_template','default'),(4193,2135,'_elementor_edit_mode','builder'),(4194,2135,'_elementor_template_type','wp-page'),(4195,2135,'_elementor_version','3.6.5'),(4196,2135,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"The Vijaya clinic is full of professionalism, modern equipment, very friendly staff. Doctor took care of my teeth competently and brought back a wide smile on my face. I heartily recommend!\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4197,2135,'_elementor_page_assets','a:0:{}'),(4198,2135,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4199,2136,'_wp_page_template','default'),(4200,2136,'_elementor_edit_mode','builder'),(4201,2136,'_elementor_template_type','wp-page'),(4202,2136,'_elementor_version','3.6.5'),(4203,2136,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"The Vijaya clinic is full of professionalism, modern equipment, very friendly staff. Doctor took care of my teeth competently and brought back a wide smile on my face. I heartily recommend!\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4204,2136,'_elementor_page_assets','a:0:{}'),(4205,2136,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4206,2137,'_wp_page_template','default'),(4207,2137,'_elementor_edit_mode','builder'),(4208,2137,'_elementor_template_type','wp-page'),(4209,2137,'_elementor_version','3.6.5'),(4210,2137,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4211,2137,'_elementor_page_assets','a:0:{}'),(4212,2137,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4214,2138,'_wp_page_template','default'),(4215,2138,'_elementor_edit_mode','builder'),(4216,2138,'_elementor_template_type','wp-page'),(4217,2138,'_elementor_version','3.6.5'),(4218,2138,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4219,2138,'_elementor_page_assets','a:0:{}'),(4220,2138,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4221,2138,'_elementor_css','a:6:{s:4:\"time\";i:1652791952;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4222,2139,'_wp_page_template','default'),(4223,2139,'_elementor_edit_mode','builder'),(4224,2139,'_elementor_template_type','wp-page'),(4225,2139,'_elementor_version','3.6.5'),(4226,2139,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4227,2139,'_elementor_page_assets','a:0:{}'),(4228,2139,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4229,2139,'_elementor_css','a:6:{s:4:\"time\";i:1652791952;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4230,2140,'_wp_page_template','default'),(4231,2140,'_elementor_edit_mode','builder'),(4232,2140,'_elementor_template_type','wp-page'),(4233,2140,'_elementor_version','3.6.5'),(4234,2140,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4235,2140,'_elementor_page_assets','a:0:{}'),(4236,2140,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4237,2140,'_elementor_css','a:6:{s:4:\"time\";i:1652791952;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4239,2141,'_wp_page_template','default'),(4240,2141,'_elementor_edit_mode','builder'),(4241,2141,'_elementor_template_type','wp-page'),(4242,2141,'_elementor_version','3.6.5'),(4243,2141,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4244,2141,'_elementor_page_assets','a:0:{}'),(4245,2141,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4246,2141,'_elementor_css','a:6:{s:4:\"time\";i:1652792116;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4247,2142,'_wp_page_template','default'),(4248,2142,'_elementor_edit_mode','builder'),(4249,2142,'_elementor_template_type','wp-page'),(4250,2142,'_elementor_version','3.6.5'),(4251,2142,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4252,2142,'_elementor_page_assets','a:0:{}'),(4253,2142,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4254,2142,'_elementor_css','a:6:{s:4:\"time\";i:1652792116;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4255,2143,'_wp_page_template','default'),(4256,2143,'_elementor_edit_mode','builder'),(4257,2143,'_elementor_template_type','wp-page'),(4258,2143,'_elementor_version','3.6.5'),(4259,2143,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4260,2143,'_elementor_page_assets','a:0:{}'),(4261,2143,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4262,2143,'_elementor_css','a:6:{s:4:\"time\";i:1652792116;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4263,2144,'_wp_page_template','default'),(4264,2144,'_elementor_edit_mode','builder'),(4265,2144,'_elementor_template_type','wp-page'),(4266,2144,'_elementor_version','3.6.5'),(4267,2144,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4268,2144,'_elementor_page_assets','a:0:{}'),(4269,2144,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4270,2145,'_wp_page_template','default'),(4271,2145,'_elementor_edit_mode','builder'),(4272,2145,'_elementor_template_type','wp-page'),(4273,2145,'_elementor_version','3.6.5'),(4274,2145,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4275,2145,'_elementor_page_assets','a:0:{}'),(4276,2145,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4277,2146,'_wp_page_template','default'),(4278,2146,'_elementor_edit_mode','builder'),(4279,2146,'_elementor_template_type','wp-page'),(4280,2146,'_elementor_version','3.6.5'),(4281,2146,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4282,2146,'_elementor_page_assets','a:0:{}'),(4283,2146,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4291,2148,'_wp_page_template','default'),(4292,2148,'_elementor_edit_mode','builder'),(4293,2148,'_elementor_template_type','wp-page'),(4294,2148,'_elementor_version','3.6.5'),(4295,2148,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4296,2148,'_elementor_page_assets','a:0:{}'),(4297,2148,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4298,2149,'_wp_page_template','default'),(4299,2149,'_elementor_edit_mode','builder'),(4300,2149,'_elementor_template_type','wp-page'),(4301,2149,'_elementor_version','3.6.5'),(4302,2149,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4303,2149,'_elementor_page_assets','a:0:{}'),(4304,2149,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4305,2150,'_wp_page_template','default'),(4306,2150,'_elementor_edit_mode','builder'),(4307,2150,'_elementor_template_type','wp-page'),(4308,2150,'_elementor_version','3.6.5'),(4309,2150,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\"},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4310,2150,'_elementor_page_assets','a:0:{}'),(4311,2150,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4312,2151,'_wp_page_template','default'),(4313,2151,'_elementor_edit_mode','builder'),(4314,2151,'_elementor_template_type','wp-page'),(4315,2151,'_elementor_version','3.6.5'),(4316,2151,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\"},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4317,2151,'_elementor_page_assets','a:0:{}'),(4318,2151,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4319,2152,'_wp_page_template','default'),(4320,2152,'_elementor_edit_mode','builder'),(4321,2152,'_elementor_template_type','wp-page'),(4322,2152,'_elementor_version','3.6.5'),(4323,2152,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\"},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4324,2152,'_elementor_page_assets','a:0:{}'),(4325,2152,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4326,2153,'_wp_page_template','default'),(4327,2153,'_elementor_edit_mode','builder'),(4328,2153,'_elementor_template_type','wp-page'),(4329,2153,'_elementor_version','3.6.5'),(4330,2153,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4331,2153,'_elementor_page_assets','a:0:{}'),(4332,2153,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4333,2154,'_wp_page_template','default'),(4334,2154,'_elementor_edit_mode','builder'),(4335,2154,'_elementor_template_type','wp-page'),(4336,2154,'_elementor_version','3.6.5'),(4337,2154,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4338,2154,'_elementor_page_assets','a:0:{}'),(4339,2154,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4340,2155,'_wp_page_template','default'),(4341,2155,'_elementor_edit_mode','builder'),(4342,2155,'_elementor_template_type','wp-page'),(4343,2155,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (4344,2155,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4345,2155,'_elementor_page_assets','a:0:{}'),(4346,2155,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4347,2156,'_wp_page_template','default'),(4348,2156,'_elementor_edit_mode','builder'),(4349,2156,'_elementor_template_type','wp-page'),(4350,2156,'_elementor_version','3.6.5'),(4351,2156,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4352,2156,'_elementor_page_assets','a:0:{}'),(4353,2156,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4355,2157,'_wp_page_template','default'),(4356,2157,'_elementor_edit_mode','builder'),(4357,2157,'_elementor_template_type','wp-page'),(4358,2157,'_elementor_version','3.6.5'),(4359,2157,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4360,2157,'_elementor_page_assets','a:0:{}'),(4361,2157,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4362,2157,'_elementor_css','a:6:{s:4:\"time\";i:1652792442;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4363,2158,'_wp_page_template','default'),(4364,2158,'_elementor_edit_mode','builder'),(4365,2158,'_elementor_template_type','wp-page'),(4366,2158,'_elementor_version','3.6.5'),(4367,2158,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4368,2158,'_elementor_page_assets','a:0:{}'),(4369,2158,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4370,2158,'_elementor_css','a:6:{s:4:\"time\";i:1652792442;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4371,2159,'_wp_page_template','default'),(4372,2159,'_elementor_edit_mode','builder'),(4373,2159,'_elementor_template_type','wp-page'),(4374,2159,'_elementor_version','3.6.5'),(4375,2159,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4376,2159,'_elementor_page_assets','a:0:{}'),(4377,2159,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4378,2159,'_elementor_css','a:6:{s:4:\"time\";i:1652792442;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4380,2160,'_wp_page_template','default'),(4381,2160,'_elementor_edit_mode','builder'),(4382,2160,'_elementor_template_type','wp-page'),(4383,2160,'_elementor_version','3.6.5'),(4384,2160,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4385,2160,'_elementor_page_assets','a:0:{}'),(4386,2160,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4387,2160,'_elementor_css','a:6:{s:4:\"time\";i:1652792515;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4388,2161,'_wp_page_template','default'),(4389,2161,'_elementor_edit_mode','builder'),(4390,2161,'_elementor_template_type','wp-page'),(4391,2161,'_elementor_version','3.6.5'),(4392,2161,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"background_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4393,2161,'_elementor_page_assets','a:0:{}'),(4394,2161,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4395,2161,'_elementor_css','a:6:{s:4:\"time\";i:1652792515;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4396,2162,'_wp_page_template','default'),(4397,2162,'_elementor_edit_mode','builder'),(4398,2162,'_elementor_template_type','wp-page'),(4399,2162,'_elementor_version','3.6.5'),(4400,2162,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4401,2162,'_elementor_page_assets','a:0:{}'),(4402,2162,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4403,2162,'_elementor_css','a:6:{s:4:\"time\";i:1652792515;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4405,2163,'_edit_lock','1652792643:1'),(4406,2163,'_wp_trash_meta_status','publish'),(4407,2163,'_wp_trash_meta_time','1652792645'),(4408,1254,'_wp_old_date','2021-07-24'),(4409,1253,'_wp_old_date','2021-07-24'),(4410,1258,'_wp_old_date','2021-07-24'),(4413,1256,'_wp_old_date','2021-07-24'),(4414,1260,'_wp_old_date','2021-07-24'),(4415,1257,'_wp_old_date','2021-07-24'),(4416,2164,'_menu_item_type','custom'),(4417,2164,'_menu_item_menu_item_parent','0'),(4418,2164,'_menu_item_object_id','2164'),(4419,2164,'_menu_item_object','custom'),(4420,2164,'_menu_item_target',''),(4421,2164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4422,2164,'_menu_item_xfn',''),(4423,2164,'_menu_item_url','#'),(4425,2165,'_menu_item_type','custom'),(4426,2165,'_menu_item_menu_item_parent','0'),(4427,2165,'_menu_item_object_id','2165'),(4428,2165,'_menu_item_object','custom'),(4429,2165,'_menu_item_target',''),(4430,2165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4431,2165,'_menu_item_xfn',''),(4432,2165,'_menu_item_url','#'),(4434,89,'_wp_old_slug','clilab'),(4435,2166,'_wp_trash_meta_status','publish'),(4436,2166,'_wp_trash_meta_time','1652793325'),(4437,2168,'_wp_trash_meta_status','publish'),(4438,2168,'_wp_trash_meta_time','1652793381'),(4439,2170,'_wp_attached_file','2022/05/dentist-PNG-759x1024-1.png'),(4440,2170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:759;s:6:\"height\";i:1024;s:4:\"file\";s:34:\"2022/05/dentist-PNG-759x1024-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"dentist-PNG-759x1024-1-222x300.png\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"dentist-PNG-759x1024-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"dentist-PNG-759x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"dentist-PNG-759x1024-1-600x809.png\";s:5:\"width\";i:600;s:6:\"height\";i:809;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"dentist-PNG-759x1024-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"dentist-PNG-759x1024-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"dentist-PNG-759x1024-1-600x809.png\";s:5:\"width\";i:600;s:6:\"height\";i:809;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"dentist-PNG-759x1024-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4441,2171,'_wp_page_template','default'),(4442,2171,'_elementor_edit_mode','builder'),(4443,2171,'_elementor_template_type','wp-page'),(4444,2171,'_elementor_version','3.6.5'),(4445,2171,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4446,2171,'_elementor_page_assets','a:0:{}'),(4447,2171,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4448,2171,'_elementor_css','a:6:{s:4:\"time\";i:1652792537;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4449,2172,'_wp_page_template','default'),(4450,2172,'_elementor_edit_mode','builder'),(4451,2172,'_elementor_template_type','wp-page'),(4452,2172,'_elementor_version','3.6.5'),(4453,2172,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/image-from-rawpixel-id-3228523-png-1-14.png\",\"id\":1800,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C586\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4454,2172,'_elementor_page_assets','a:0:{}'),(4455,2172,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4456,2172,'_elementor_css','a:6:{s:4:\"time\";i:1652792537;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4457,2173,'_wp_page_template','default'),(4458,2173,'_elementor_edit_mode','builder'),(4459,2173,'_elementor_template_type','wp-page'),(4460,2173,'_elementor_version','3.6.5'),(4461,2173,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4462,2173,'_elementor_page_assets','a:0:{}'),(4463,2173,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4464,2173,'_elementor_css','a:6:{s:4:\"time\";i:1652792537;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4474,2175,'_wp_page_template','default'),(4475,2175,'_elementor_edit_mode','builder'),(4476,2175,'_elementor_template_type','wp-page'),(4477,2175,'_elementor_version','3.6.5'),(4478,2175,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4479,2175,'_elementor_page_assets','a:0:{}'),(4480,2175,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4481,2176,'_wp_page_template','default'),(4482,2176,'_elementor_edit_mode','builder'),(4483,2176,'_elementor_template_type','wp-page'),(4484,2176,'_elementor_version','3.6.5'),(4485,2176,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4486,2176,'_elementor_page_assets','a:0:{}'),(4487,2176,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4488,2177,'_wp_page_template','default'),(4489,2177,'_elementor_edit_mode','builder'),(4490,2177,'_elementor_template_type','wp-page'),(4491,2177,'_elementor_version','3.6.5'),(4492,2177,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4493,2177,'_elementor_page_assets','a:0:{}'),(4494,2177,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4496,2178,'_wp_page_template','default'),(4497,2178,'_elementor_edit_mode','builder'),(4498,2178,'_elementor_template_type','wp-page'),(4499,2178,'_elementor_version','3.6.5'),(4500,2178,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4501,2178,'_elementor_page_assets','a:0:{}'),(4502,2178,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4503,2178,'_elementor_css','a:6:{s:4:\"time\";i:1652794287;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4504,2179,'_wp_page_template','default'),(4505,2179,'_elementor_edit_mode','builder'),(4506,2179,'_elementor_template_type','wp-page'),(4507,2179,'_elementor_version','3.6.5'),(4508,2179,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6ba4ea\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\"},\"elements\":[{\"id\":\"6bdd0ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"35044b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A\",\"weight\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4509,2179,'_elementor_page_assets','a:0:{}'),(4510,2179,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4511,2179,'_elementor_css','a:6:{s:4:\"time\";i:1652794287;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4512,2180,'_wp_page_template','default'),(4513,2180,'_elementor_edit_mode','builder'),(4514,2180,'_elementor_template_type','wp-page'),(4515,2180,'_elementor_version','3.6.5'),(4516,2180,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4517,2180,'_elementor_page_assets','a:0:{}'),(4518,2180,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4519,2180,'_elementor_css','a:6:{s:4:\"time\";i:1652794287;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4521,2181,'_wp_page_template','default'),(4522,2181,'_elementor_edit_mode','builder'),(4523,2181,'_elementor_template_type','wp-page'),(4524,2181,'_elementor_version','3.6.5'),(4525,2181,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4526,2181,'_elementor_page_assets','a:0:{}'),(4527,2181,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4528,2181,'_elementor_css','a:6:{s:4:\"time\";i:1652794555;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4529,2182,'_wp_page_template','default'),(4530,2182,'_elementor_edit_mode','builder'),(4531,2182,'_elementor_template_type','wp-page'),(4532,2182,'_elementor_version','3.6.5'),(4533,2182,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4534,2182,'_elementor_page_assets','a:0:{}'),(4535,2182,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4536,2182,'_elementor_css','a:6:{s:4:\"time\";i:1652794555;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4537,2183,'_wp_page_template','default'),(4538,2183,'_elementor_edit_mode','builder'),(4539,2183,'_elementor_template_type','wp-page'),(4540,2183,'_elementor_version','3.6.5'),(4541,2183,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4542,2183,'_elementor_page_assets','a:0:{}'),(4543,2183,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4544,2183,'_elementor_css','a:6:{s:4:\"time\";i:1652794555;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4546,2184,'_wp_page_template','default'),(4547,2184,'_elementor_edit_mode','builder'),(4548,2184,'_elementor_template_type','wp-page'),(4549,2184,'_elementor_version','3.6.5'),(4550,2184,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4551,2184,'_elementor_page_assets','a:0:{}'),(4552,2184,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4553,2184,'_elementor_css','a:6:{s:4:\"time\";i:1652794583;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4554,2185,'_wp_page_template','default'),(4555,2185,'_elementor_edit_mode','builder'),(4556,2185,'_elementor_template_type','wp-page'),(4557,2185,'_elementor_version','3.6.5'),(4558,2185,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4559,2185,'_elementor_page_assets','a:0:{}'),(4560,2185,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4561,2185,'_elementor_css','a:6:{s:4:\"time\";i:1652794583;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4562,2186,'_wp_page_template','default'),(4563,2186,'_elementor_edit_mode','builder'),(4564,2186,'_elementor_template_type','wp-page'),(4565,2186,'_elementor_version','3.6.5'),(4566,2186,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4567,2186,'_elementor_page_assets','a:0:{}'),(4568,2186,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4569,2186,'_elementor_css','a:6:{s:4:\"time\";i:1652794583;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4570,2187,'_wp_page_template','default'),(4571,2187,'_elementor_edit_mode','builder'),(4572,2187,'_elementor_template_type','wp-page'),(4573,2187,'_elementor_version','3.6.5'),(4574,2187,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4575,2187,'_elementor_page_assets','a:0:{}'),(4576,2187,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4577,2188,'_wp_page_template','default'),(4578,2188,'_elementor_edit_mode','builder'),(4579,2188,'_elementor_template_type','wp-page'),(4580,2188,'_elementor_version','3.6.5');
INSERT INTO `wp_postmeta` VALUES (4581,2188,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4582,2188,'_elementor_page_assets','a:0:{}'),(4583,2188,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4584,2189,'_wp_page_template','default'),(4585,2189,'_elementor_edit_mode','builder'),(4586,2189,'_elementor_template_type','wp-page'),(4587,2189,'_elementor_version','3.6.5'),(4588,2189,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4589,2189,'_elementor_page_assets','a:0:{}'),(4590,2189,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4591,2190,'_wp_page_template','default'),(4592,2190,'_elementor_edit_mode','builder'),(4593,2190,'_elementor_template_type','wp-page'),(4594,2190,'_elementor_version','3.6.5'),(4595,2190,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4596,2190,'_elementor_page_assets','a:0:{}'),(4597,2190,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4598,2191,'_wp_page_template','default'),(4599,2191,'_elementor_edit_mode','builder'),(4600,2191,'_elementor_template_type','wp-page'),(4601,2191,'_elementor_version','3.6.5'),(4602,2191,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4603,2191,'_elementor_page_assets','a:0:{}'),(4604,2191,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4605,2192,'_wp_page_template','default'),(4606,2192,'_elementor_edit_mode','builder'),(4607,2192,'_elementor_template_type','wp-page'),(4608,2192,'_elementor_version','3.6.5'),(4609,2192,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4610,2192,'_elementor_page_assets','a:0:{}'),(4611,2192,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4613,2193,'_menu_item_type','post_type'),(4614,2193,'_menu_item_menu_item_parent','0'),(4615,2193,'_menu_item_object_id','1949'),(4616,2193,'_menu_item_object','page'),(4617,2193,'_menu_item_target',''),(4618,2193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4619,2193,'_menu_item_xfn',''),(4620,2193,'_menu_item_url',''),(4622,84,'_wp_old_date','2021-07-09'),(4623,87,'_wp_old_date','2021-07-09'),(4624,85,'_wp_old_date','2021-07-09'),(4625,86,'_wp_old_date','2021-07-09'),(4626,2194,'_menu_item_type','post_type'),(4627,2194,'_menu_item_menu_item_parent','0'),(4628,2194,'_menu_item_object_id','10'),(4629,2194,'_menu_item_object','page'),(4630,2194,'_menu_item_target',''),(4631,2194,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4632,2194,'_menu_item_xfn',''),(4633,2194,'_menu_item_url',''),(4635,2195,'_menu_item_type','post_type'),(4636,2195,'_menu_item_menu_item_parent','0'),(4637,2195,'_menu_item_object_id','2'),(4638,2195,'_menu_item_object','page'),(4639,2195,'_menu_item_target',''),(4640,2195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4641,2195,'_menu_item_xfn',''),(4642,2195,'_menu_item_url',''),(4644,2196,'_menu_item_type','post_type'),(4645,2196,'_menu_item_menu_item_parent','0'),(4646,2196,'_menu_item_object_id','859'),(4647,2196,'_menu_item_object','page'),(4648,2196,'_menu_item_target',''),(4649,2196,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4650,2196,'_menu_item_xfn',''),(4651,2196,'_menu_item_url',''),(4653,2197,'_menu_item_type','post_type'),(4654,2197,'_menu_item_menu_item_parent','0'),(4655,2197,'_menu_item_object_id','1301'),(4656,2197,'_menu_item_object','page'),(4657,2197,'_menu_item_target',''),(4658,2197,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4659,2197,'_menu_item_xfn',''),(4660,2197,'_menu_item_url',''),(4662,2198,'_edit_lock','1652794823:1'),(4671,2200,'_wp_page_template','default'),(4672,2200,'_elementor_edit_mode','builder'),(4673,2200,'_elementor_template_type','wp-page'),(4674,2200,'_elementor_version','3.6.5'),(4675,2200,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4676,2200,'_elementor_page_assets','a:0:{}'),(4677,2200,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4678,2201,'_wp_page_template','default'),(4679,2201,'_elementor_edit_mode','builder'),(4680,2201,'_elementor_template_type','wp-page'),(4681,2201,'_elementor_version','3.6.5'),(4682,2201,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Clilab Health<br> Services Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Directions and Wayfinding\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4683,2201,'_elementor_page_assets','a:0:{}'),(4684,2201,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4685,2202,'_wp_page_template','default'),(4686,2202,'_elementor_edit_mode','builder'),(4687,2202,'_elementor_template_type','wp-page'),(4688,2202,'_elementor_version','3.6.5'),(4689,2202,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4690,2202,'_elementor_page_assets','a:0:{}'),(4691,2202,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4692,2203,'_wp_page_template','default'),(4693,2203,'_elementor_edit_mode','builder'),(4694,2203,'_elementor_template_type','wp-page'),(4695,2203,'_elementor_version','3.6.5'),(4696,2203,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4697,2203,'_elementor_page_assets','a:0:{}'),(4698,2203,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4699,2204,'_wp_page_template','default'),(4700,2204,'_elementor_edit_mode','builder'),(4701,2204,'_elementor_template_type','wp-page'),(4702,2204,'_elementor_version','3.6.5'),(4703,2204,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cAs always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"London, UK\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#2A2A2A\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4704,2204,'_elementor_page_assets','a:0:{}'),(4705,2204,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4706,2205,'_wp_page_template','default'),(4707,2205,'_elementor_edit_mode','builder'),(4708,2205,'_elementor_template_type','wp-page'),(4709,2205,'_elementor_version','3.6.5'),(4710,2205,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4711,2205,'_elementor_page_assets','a:0:{}'),(4712,2205,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4714,2089,'_wp_trash_meta_status','publish'),(4715,2089,'_wp_trash_meta_time','1652795650'),(4716,2206,'_wp_trash_meta_status','publish'),(4717,2206,'_wp_trash_meta_time','1652795671'),(4718,2198,'_customize_restore_dismissed','1'),(4719,2207,'_wp_page_template','default'),(4720,2207,'_elementor_edit_mode','builder'),(4721,2207,'_elementor_template_type','wp-page'),(4722,2207,'_elementor_version','3.6.5'),(4723,2207,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4724,2207,'_elementor_page_assets','a:0:{}'),(4725,2207,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4726,2207,'_elementor_css','a:6:{s:4:\"time\";i:1652795570;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4727,2208,'_wp_page_template','default'),(4728,2208,'_elementor_edit_mode','builder'),(4729,2208,'_elementor_template_type','wp-page'),(4730,2208,'_elementor_version','3.6.5'),(4731,2208,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the CliLab Clinic?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the CliLab?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4732,2208,'_elementor_page_assets','a:0:{}'),(4733,2208,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4734,2208,'_elementor_css','a:6:{s:4:\"time\";i:1652795570;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4735,2209,'_wp_page_template','default'),(4736,2209,'_elementor_edit_mode','builder'),(4737,2209,'_elementor_template_type','wp-page'),(4738,2209,'_elementor_version','3.6.5'),(4739,2209,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the Vijaya Dental Care?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the Vijaya?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4740,2209,'_elementor_page_assets','a:0:{}'),(4741,2209,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4742,2209,'_elementor_css','a:6:{s:4:\"time\";i:1652795570;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4744,2210,'_wp_page_template','default'),(4745,2210,'_elementor_edit_mode','builder'),(4746,2210,'_elementor_template_type','wp-page'),(4747,2210,'_elementor_version','3.6.5'),(4748,2210,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the Vijaya Dental Care?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the Vijaya?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4749,2210,'_elementor_page_assets','a:0:{}'),(4750,2210,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4751,2210,'_elementor_css','a:6:{s:4:\"time\";i:1652795795;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4752,2211,'_wp_page_template','default'),(4753,2211,'_elementor_edit_mode','builder'),(4754,2211,'_elementor_template_type','wp-page'),(4755,2211,'_elementor_version','3.6.5'),(4756,2211,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the Vijaya Dental Care?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the Vijaya?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4757,2211,'_elementor_page_assets','a:0:{}'),(4758,2211,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4759,2211,'_elementor_css','a:6:{s:4:\"time\";i:1652795795;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4760,2212,'_wp_page_template','default'),(4761,2212,'_elementor_edit_mode','builder'),(4762,2212,'_elementor_template_type','wp-page'),(4763,2212,'_elementor_version','3.6.5'),(4764,2212,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8d361c8\"}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the Vijaya Dental Care?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the Vijaya?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4765,2212,'_elementor_page_assets','a:0:{}'),(4766,2212,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4767,2212,'_elementor_css','a:6:{s:4:\"time\";i:1652795795;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:14;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4769,2213,'_wp_page_template','default'),(4770,2213,'_elementor_edit_mode','builder'),(4771,2213,'_elementor_template_type','wp-page'),(4772,2213,'_elementor_version','3.6.5'),(4773,2213,'_elementor_data','[{\"id\":\"e1396b1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"html_tag\":\"div\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[{\"id\":\"eed56ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d64831\",\"elType\":\"section\",\"settings\":{\"html_tag\":\"div\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.330000000000000015543122344752191565930843353271484375,\"sizes\":[]},\"background_overlay_background\":\"classic\"},\"elements\":[{\"id\":\"46a8d5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c4b809b\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Homepage 2\",\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\" slidertitle=\\\"Homepage 2\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d814b5d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"animation\":\"none\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg-map.png\",\"id\":1838,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_position\":\"center center\",\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":-132,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":99,\"sizes\":[]},\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"contain\",\"overlay_blend_mode\":\"luminosity\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"stretch_section\":\"section-stretched\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[{\"id\":\"3243744\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation\":\"none\"},\"elements\":[{\"id\":\"d993d86\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"a7bd349\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true},{\"id\":\"37bac49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998408384271897375583648681640625,\"_inline_size_tablet\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"89b79f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome to Vijaya Dental Care\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\\n<br>\\n\\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we\\u2019ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\\n\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"307a18f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fe751e8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Schedule Appt\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create-1.svg\",\"id\":1751},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Find a Doctor\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/stethoscope.svg\",\"id\":1753},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8d361c8\"}],\"space_between\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"text_color\":\"#393434\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4696cb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"html_tag\":\"div\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\"},\"elements\":[{\"id\":\"0c4f99d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1f19538\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"html_tag\":\"div\",\"animation\":\"none\",\"content_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"5e4e0e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b85b51f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Care - Our Specialties\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d1a9b46\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At The Vijaya Dental Care we offer the most advanced and<br \\/>effective bespoke treatment packages to suit your needs<\\/p>\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"952c510\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Dental Implants\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/child.svg\",\"id\":1772},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Root Canal Treatment\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/tooth.svg\",\"id\":1785},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Braces and Aligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/syringe.svg\",\"id\":1784},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Clear Alligners\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hands-heart.svg\",\"id\":1777},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dental Fillings\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/dont-touch-eyes.svg\",\"id\":1775},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Wisdom teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/brain.svg\",\"id\":1770},\"library\":\"svg\"},\"_id\":\"ba96d8b\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"acc9c64\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Teeth Removal\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/medication.svg\",\"id\":1780},\"library\":\"svg\"},\"_id\":\"87f6bf4\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Dentures\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/wheelchair-2.svg\",\"id\":1789},\"library\":\"svg\"},\"_id\":\"e3d2fa6\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Bridges and Crowns\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/pregnant-woman.svg\",\"id\":1790},\"library\":\"svg\"},\"_id\":\"3ecc6cb\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Teeth Whitening\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/lungs-infection.svg\",\"id\":1779},\"library\":\"svg\"},\"_id\":\"f6b9f74\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Smile Makeover\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/hospital-34.svg\",\"id\":1778},\"library\":\"svg\"},\"_id\":\"fd54092\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/service-single\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"More Services\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/menu.svg\",\"id\":1781},\"library\":\"svg\"},\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ba96d8b\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46c2b266\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1330,\"sizes\":[]},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#63FFDD\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"gap\":\"extended\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7f631ebd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d030380\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"structure\":\"20\",\"html_tag\":\"div\",\"content_position\":\"middle\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"14108f06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position_tablet\":\"bottom\"},\"elements\":[{\"id\":\"140f74af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/dentist-PNG-759x1024-1.png\",\"id\":2170,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"center\",\"_animation\":\"none\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"60440e1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"none\"},\"elements\":[{\"id\":\"44d03c14\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose Us\",\"header_size\":\"h6\",\"title_color\":\"#12E09B\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b3453b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Makes Vijaya Dental Care<br> Unique?\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64e37127\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Experience<\\/strong><\\/p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23908708\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"59c56f82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Caring Commitment<\\/strong><\\/p><p>We take our commitment to be your health care partner seriously. As primary care providers<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c49821e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f06ceae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Great Facilities<\\/strong><\\/p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.<\\/p>\",\"text_columns\":\"2\",\"text_columns_tablet\":\"1\",\"text_columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3894b51d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#2A2A2A26\",\"gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"54624d11\",\"elType\":\"widget\",\"settings\":{\"text\":\"Discover Services We Provide\",\"size\":\"xs\",\"button_text_color\":\"#029967\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"8\",\"bottom\":\"8\",\"left\":\"8\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42d2de33\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"html_tag\":\"div\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"none\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"411d6a26\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4200d49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need some advice from our experts?\",\"header_size\":\"h6\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a13a3c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Request a Call Back Today Now!\",\"align\":\"left\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65d3d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"p1\\\"><span class=\\\"s1\\\">We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.<\\/span><\\/p>\",\"text_columns\":\"1\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9481866\",\"elType\":\"widget\",\"settings\":{\"upload_type\":\"image\",\"contact_image\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/face.png\",\"id\":1794,\"alt\":\"\",\"source\":\"library\"},\"contact_title\":\"\",\"listItems_groups\":[{\"list_text\":\"The quickest way to get in contact is to telephone 03457 30 40 30\",\"_id\":\"86fb9cc\",\"list_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"namedical_basic_contact\"}],\"isInner\":true},{\"id\":\"3d4bf266\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"2bd52752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"29dd2c66\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"701\\\" title=\\\"Request a Call Back\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d3d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"gap\":\"custom\",\"gap_columns_custom\":{\"unit\":\"px\",\"size\":27.5,\"sizes\":[]},\"html_tag\":\"div\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#163F7A\",\"background_image\":{\"url\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/test.png\",\"id\":2118,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"gap_columns_custom_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"gap_columns_custom_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_size\":\"contain\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"b0288b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"93ee6ec\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.60999999999999998667732370449812151491641998291015625,\"sizes\":[]}},\"elements\":[{\"id\":\"0ef8145\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[],\"isInner\":true},{\"id\":\"69e473e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":70,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4a00f45\",\"elType\":\"widget\",\"settings\":{\"testimonials_groups\":[{\"testimonial_title\":\"Mrs. Linda\",\"testimonial_content\":\"\\u201cI was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.\\u201d\",\"_id\":\"3ff2125\",\"testimonial_designation\":\"Kadavantra, Kochi\",\"rating\":\"5\"},{\"testimonial_title\":\"Mr Wagner\",\"testimonial_content\":\"\\u201cI have now come to the end of the 12 months of membership & I have been very happy with the services provided.\\u201d\",\"testimonial_designation\":\"New York\",\"rating\":\"5\",\"_id\":\"8c70f4e\"},{\"testimonial_title\":\"Shakira\",\"testimonial_content\":\"\\u201cThis was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.\\u201d\",\"testimonial_designation\":\"London\",\"rating\":\"5\",\"_id\":\"18352fe\"}],\"section_alignment\":\"center\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Fraunces\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.229999999999999982236431605997495353221893310546875,\"sizes\":[]},\"content_color\":\"#FFFFFF\",\"carousel_margin\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"carousel_autoplay\":\"\",\"carousel_autoheight\":\"true\",\"sastestimonial_title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"namedical_basic_testimonials\"}],\"isInner\":true},{\"id\":\"e8bbbb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.6639999999999997015720509807579219341278076171875},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44e2c152\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1200,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"none\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80e5b8d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f882c79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recognition And Awards\",\"align\":\"center\",\"header_size\":\"h3\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.25,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e888bfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we\\u2019ve received include:\",\"text_columns\":\"1\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1db18567\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":1856,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a1-13.jpeg\"},{\"id\":1855,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a2-13.jpeg\"},{\"id\":1858,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a3-13.jpeg\"},{\"id\":1857,\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/a4-13.jpeg\"}],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"navigation\":\"none\",\"caption_type\":\"caption\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"549eb43\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#37C5A6\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d668b25\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"eb267dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"html_tag\":\"div\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"1dd9778\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"c309246\",\"elType\":\"widget\",\"settings\":{\"title\":\"HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"title_color\":\"#FCFCFC\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"d8a68e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"17e8f01\",\"elType\":\"widget\",\"settings\":{\"text\":\"Need a Help?\",\"align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"no-bg\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#F0F4F0\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54068f3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1335,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"df8fbd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\"},\"elements\":[{\"id\":\"bda40a6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/event-create.svg\",\"id\":1776},\"library\":\"svg\"},\"title_text\":\"New to the Vijaya Dental Care?\\u200b\",\"description_text\":\"To Book a Consultation or Find out More About any of our Treatments.\\n<a href=\\\"#\\\">Book a Consultation<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0747c2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":200},\"elements\":[{\"id\":\"34f2611\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/telephone.svg\",\"id\":1792},\"library\":\"svg\"},\"title_text\":\"Already a Patient of the Vijaya?\",\"description_text\":\"If you Have any Queries, Need to Book or Cancel a Treatment.\\n<a href=\\\"#\\\">Please Call: 0167 62 9888<\\/a>\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_css_classes\":\"custom-w\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"368d460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"animation\":\"none\",\"animation_delay\":400},\"elements\":[{\"id\":\"9c4b8f3\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/cli.21lab.co\\/wp-content\\/uploads\\/2021\\/08\\/virtual-assistant-2-1.svg\",\"id\":1787},\"library\":\"svg\"},\"title_text\":\"Frequently Asked Questions\",\"description_text\":\"Here You\\u2019ll Find Some of The Most Common Questions\\n<a href=\\\"#\\\">See FAQs About CliLab<\\/a>\",\"link\":{\"url\":\"https:\\/\\/cli.21lab.co\\/about\\/#faq\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"text_align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"custom-w\",\"_background_background\":\"classic\",\"title_color\":\"#163F7A\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(4774,2213,'_elementor_page_assets','a:0:{}'),(4775,2213,'_elementor_controls_usage','a:15:{s:6:\"column\";a:3:{s:5:\"count\";i:47;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:47;s:21:\"space_between_widgets\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:5;s:11:\"hide_mobile\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:8;s:15:\"animation_delay\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:8:\"html_tag\";i:20;s:13:\"content_width\";i:24;s:3:\"gap\";i:3;s:18:\"gap_columns_custom\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:12;}}s:5:\"style\";a:3:{s:26:\"section_background_overlay\";a:9:{s:26:\"background_overlay_opacity\";i:1;s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_xpos\";i:1;s:23:\"background_overlay_ypos\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;s:18:\"overlay_blend_mode\";i:1;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:18:\"background_color_b\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:12;s:7:\"padding\";i:6;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}}}}s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:11;s:11:\"header_size\";i:9;s:5:\"align\";i:5;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:5;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:3;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:3;s:9:\"icon_list\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:25:\"namedical_unique_valuable\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"section_valuable\";a:1:{s:15:\"valuable_groups\";i:3;}}s:8:\"advanced\";a:2:{s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:4;s:12:\"text_columns\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:28:\"namedical_basic_testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:20:\"section_testimonials\";a:2:{s:19:\"testimonials_groups\";i:1;s:17:\"section_alignment\";i:1;}s:16:\"section_carousel\";a:3:{s:15:\"carousel_margin\";i:1;s:17:\"carousel_autoplay\";i:1;s:19:\"carousel_autoheight\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_content_style\";a:6:{s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_font_weight\";i:1;s:30:\"content_typography_line_height\";i:1;s:13:\"content_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:7;s:6:\"weight\";i:3;s:3:\"gap\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:5:\"align\";i:3;s:4:\"link\";i:4;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:12:\"_css_classes\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:11:\"hover_color\";i:1;s:34:\"button_background_hover_background\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:3;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:6:{s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:5:\"image\";i:2;s:4:\"link\";i:2;s:8:\"position\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:11:{s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:31:\"title_typography_text_transform\";i:2;s:28:\"title_typography_line_height\";i:1;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;s:37:\"description_typography_text_transform\";i:1;}s:19:\"section_style_image\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:5:{s:13:\"ending_number\";i:5;s:23:\"thousand_separator_char\";i:5;s:5:\"title\";i:5;s:6:\"prefix\";i:1;s:6:\"suffix\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:5;s:7:\"_margin\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:16:\"_section_masking\";a:1:{s:12:\"_mask_switch\";i:5;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:20:\"namedical_basic_blog\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:20:\"section_blog_listing\";a:4:{s:10:\"blog_style\";i:2;s:10:\"blog_limit\";i:2;s:12:\"blog_show_id\";i:2;s:15:\"blog_pagination\";i:2;}}}}}'),(4776,2213,'_elementor_css','a:6:{s:4:\"time\";i:1652796388;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:15;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4777,28,'_elementor_css','a:6:{s:4:\"time\";i:1652797205;s:5:\"fonts\";a:1:{i:0;s:8:\"Fraunces\";}s:5:\"icons\";a:2:{i:0;s:3:\"svg\";i:15;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=2214 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,'2022-05-17 04:17:56','2022-05-17 04:17:56','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2022-05-17 04:17:56','2022-05-17 04:17:56','',0,'https://demoweblinks.in/dental/?p=1',0,'post','',1),(2,1,'2022-05-17 04:17:56','2022-05-17 04:17:56','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><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://demoweblinks.in/dental/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','','','2022-05-17 04:17:56','2022-05-17 04:17:56','',0,'https://demoweblinks.in/dental/?page_id=2',0,'page','',0),(3,1,'2022-05-17 04:17:56','2022-05-17 04:17:56','<!-- 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://demoweblinks.in/dental.</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 we send your data</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','','','2022-05-17 04:17:56','2022-05-17 04:17:56','',0,'https://demoweblinks.in/dental/?page_id=3',0,'page','',0),(4,1,'2022-05-17 04:18:21','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-05-17 04:18:21','0000-00-00 00:00:00','',0,'https://demoweblinks.in/dental/?p=4',0,'post','',0),(7,1,'2022-05-17 04:21:05','2022-05-17 04:21:05','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2022-05-17 04:21:05','2022-05-17 04:21:05','',0,'https://demoweblinks.in/dental/?post_type=wpcf7_contact_form&p=7',0,'wpcf7_contact_form','',0),(8,1,'2022-05-17 04:21:05','2022-05-17 04:21:05','','Default Kit','','publish','closed','closed','','default-kit','','','2022-05-17 04:21:05','2022-05-17 04:21:05','',0,'https://demoweblinks.in/dental/?p=8',0,'elementor_library','',0),(9,1,'2022-05-17 04:21:15','2022-05-17 04:21:15','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2022-05-17 04:21:15','2022-05-17 04:21:15','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/woocommerce-placeholder.png',0,'attachment','image/png',0),(10,1,'2022-05-17 04:21:16','2022-05-17 04:21:16','','Shop','','publish','closed','closed','','shop','','','2022-05-17 04:21:16','2022-05-17 04:21:16','',0,'https://demoweblinks.in/dental/shop/',0,'page','',0),(11,1,'2022-05-17 04:21:16','2022-05-17 04:21:16','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2022-05-17 04:21:16','2022-05-17 04:21:16','',0,'https://demoweblinks.in/dental/cart/',0,'page','',0),(12,1,'2022-05-17 04:21:16','2022-05-17 04:21:16','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2022-05-17 04:21:16','2022-05-17 04:21:16','',0,'https://demoweblinks.in/dental/checkout/',0,'page','',0),(13,1,'2022-05-17 04:21:16','2022-05-17 04:21:16','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2022-05-17 04:21:16','2022-05-17 04:21:16','',0,'https://demoweblinks.in/dental/my-account/',0,'page','',0),(14,1,'2022-05-17 04:21:16','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><b>This is a sample page.</b></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h3>Overview</h3>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additional non-returnable items:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Gift cards</li>\n<li>Downloadable software products</li>\n<li>Some health and personal care items</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not send your purchase back to the manufacturer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are certain situations where only partial refunds are granted:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Book with obvious signs of use</li>\n<li>CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.</li>\n<li>Any item not in its original condition, is damaged or missing parts for reasons not due to our error.</li>\n<li>Any item that is returned more than 30 days after delivery</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<h2>Refunds</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Late or missing refunds</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you haven’t received a refund yet, first check your bank account again.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then contact your credit card company, it may take some time before your refund is officially posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next contact your bank. There is often some processing time before a refund is posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Sale items</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Only regular priced items may be refunded. Sale items cannot be refunded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Exchanges</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Gifts</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Shipping returns</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To return your product, you should mail your product to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on where you live, the time it may take for your exchanged product to reach you may vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Need help?</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us at {email} for questions related to refunds and returns.</p>\n<!-- /wp:paragraph -->','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2022-05-17 04:21:16','0000-00-00 00:00:00','',0,'https://demoweblinks.in/dental/?page_id=14',0,'page','',0),(15,1,'2022-05-17 08:14:57','2022-05-17 08:14:57','','One Click Demo Import - log_file_2022-05-17__08-14-57','','inherit','open','closed','','one-click-demo-import-log_file_2022-05-17__08-14-57','','','2022-05-17 08:14:57','2022-05-17 08:14:57','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/log_file_2022-05-17__08-14-57.txt',0,'attachment','text/plain',0),(16,1,'2021-08-17 09:45:08','2021-08-17 09:45:08','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder-2','','','2021-08-17 09:45:08','2021-08-17 09:45:08','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/woocommerce-placeholder.png',0,'attachment','image/png',0),(17,1,'2021-07-08 08:21:18','2021-07-08 08:21:18','<div class=\"ctform\">\r\n    <p class=\"form-row\">\r\n        <label>Name *</label>\r\n        [text* text-209 placeholder \"How can we call you?\"]\r\n    </p>\r\n    <p class=\"form-row\">\r\n        <label>Email *</label>\r\n        [email* email-14 placeholder \"What Address Should I Send a Reply to?\"]\r\n    </p>\r\n    <p class=\"form-row note\">\r\n        <label>Message Text</label>\r\n        [textarea textarea-988 placeholder \"White Something…\"]\r\n    </p>\r\n    <p>\r\n        [submit \"Send a Message\"]\r\n    </p>\r\n    <p>\r\n        [acceptance acceptance-133 default:on] I have read and accept the Privacy Policy [/acceptance]\r\n    </p>\r\n</div>\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@cli.21lab.co>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@cli.21lab.co>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1-2-2','','','2021-07-08 08:21:18','2021-07-08 08:21:18','',0,'http://cli.21lab.co/?post_type=wpcf7_contact_form&amp;p=17',0,'wpcf7_contact_form','',0),(18,1,'2021-07-08 08:21:27','2021-07-08 08:21:27','','Default Kit','','publish','closed','closed','','default-kit-2-2','','','2021-07-08 08:21:27','2021-07-08 08:21:27','',0,'http://cli.21lab.co/?elementor_library=default-kit',0,'elementor_library','',0),(19,1,'2021-08-17 09:48:34','2021-08-17 09:48:34','','One Click Demo Import - log_file_2021-08-17__09-48-34','','inherit','open','closed','','one-click-demo-import-log_file_2021-08-17__09-48-34','','','2021-08-17 09:48:34','2021-08-17 09:48:34','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/log_file_2021-08-17__09-48-34.txt',0,'attachment','text/plain',0),(20,1,'2021-07-08 08:22:35','2021-07-08 08:22:35','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder-2-2','','','2021-07-08 08:22:35','2021-07-08 08:22:35','',0,'http://cli.21lab.co/wp-content/uploads/2021/07/woocommerce-placeholder.png',0,'attachment','image/png',0),(21,1,'2021-07-08 08:22:36','2021-07-08 08:22:36','<!-- wp:shortcode -->\n[woocommerce_cart]\n<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart-2','','','2021-07-08 08:22:36','2021-07-08 08:22:36','',0,'http://cli.21lab.co/cart/',0,'page','',0),(22,1,'2021-07-08 08:22:36','2021-07-08 08:22:36','<!-- wp:shortcode -->\n[woocommerce_checkout]\n<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout-2','','','2021-07-08 08:22:36','2021-07-08 08:22:36','',0,'http://cli.21lab.co/checkout/',0,'page','',0),(23,1,'2021-07-08 08:22:36','2021-07-08 08:22:36','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account-2','','','2021-07-08 08:22:36','2021-07-08 08:22:36','',0,'http://cli.21lab.co/my-account/',0,'page','',0),(28,1,'2021-07-24 03:50:59','2021-07-24 03:50:59','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										About Us\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the Vijaya Dental Care?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the Vijaya?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','publish','closed','closed','','home-2','','','2022-05-17 14:06:23','2022-05-17 14:06:23','',0,'http://cli.21lab.co/?page_id=28',0,'page','',0),(37,1,'2021-07-08 09:40:06','2021-07-08 09:40:06','<!-- wp:paragraph -->\n<p>Every person is in charge of maintaining their own good health. Following a balanced diet, having adequate amounts of exercise, and letting go of unhealthy habits are necessary to help ensure a long and happy life.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While lifestyle choices may be the catalyst for diseases such as&nbsp;diabetes&nbsp;and heart disease, certain conditions are of higher risk to people as they get older. For this reason, staying health conscious is a must.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>The Role of the Prostate Gland</strong>&nbsp;</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For males, one organ with a higher risk of developing a condition over time would be the prostate. Located below the bladder and behind the rectum, this walnut-sized organ secretes alkaline fluids that provide lubrication and nourishment to the sperm. As a man gets older, cells in the prostate may function abnormally, causing various health issues.<br>Research shows that&nbsp;1 out of 8 men&nbsp;will be diagnosed with prostate cancer. It is one of the most prevalent forms of the disease in American men and the&nbsp;fourth leading type of cancer&nbsp;in Filipino men. While there are treatment options for prostate cancer, there are many ways to prevent this. Here is a handy guide to help maintain a healthy prostate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>6 Natural Ways to Keep a Happy and Healthy Prostate</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><br><strong>1. A prostate-healthy diet</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The first step to attaining prostate wellness is to reassess food intake. Following a balanced diet makes it easier to maintain a normal weight, which also helps avoid several conditions through the years.<br><br>For starters, there should be leafy greens, berries, and fish included in the diet. These contain vitamins, nutrients, and antioxidants that protect against free radicals and regulate inflammation. There should also be less intake of fatty foods and dairy. Some studies suggest that&nbsp;men who consume a lot of fat have the highest risk of contracting prostate cancer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Staying active</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Generally speaking, staying active promotes a healthy body overall while improving mood and cognition.&nbsp;<a href=\"https://onlinelibrary.wiley.com/doi/full/10.1002/ijc.21668\">Studies</a>show&nbsp;that men who get regular physical activity have a lower risk of benign prostatic hyperplasia and prostate cancer. &nbsp;In the case of a packed schedule, something as simple as walking for 30 minutes every day can already make a huge difference.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Frequent ejaculation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Whether it happens during intercourse or through masturbation, several studies show that frequent ejaculation may have a positive effect on the prostate.<br><br>Men in their 40s who ejaculate 21 or more times in a month on average are&nbsp;32% less likely to develop prostate cancer&nbsp;than those who only do it for seven. More research is required to support this claim, but this static indicates that sexual activity may play a massive role in keeping a healthy prostate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Consume more green tea and coffee</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Green tea&nbsp;is dubbed by many as one of the healthiest drinks in the world. Since the beverage is loaded with antioxidants called catechins, having a few cups a day is a great way to cleanse the body. A&nbsp;2008 study&nbsp;shows that men who consume green tea extracts are less likely to develop prostate cancer.<br><br>Coffee can also do wonders for one’s health. Studies show that drinking&nbsp;two (2) to four (4) cups of coffee&nbsp;daily can lower the risk of contracting prostate cancer. But while this benefit may sound like a dream for coffee lovers, it is crucial to practice restraint, especially for those with cardiovascular conditions. Keep in mind that excessive caffeine consumption can be harmful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>5. Manage mental health</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stress is a precursor to many different illnesses, including prostate cancer. Men who have difficulty dealing with pressure and anxiety produce hormones that encourage prostate growth over time.<br><br>With that said, prioritizing mental health will help avoid prostate-related diseases. When handling stressful situations, getting in touch with loved ones can make a huge difference to one’s mental and physical health.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>6. Let go of smoking</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Following the previous point, some men treat smoking as a common coping mechanism. While a cigarette or two may help calm one’s nerves after a stressful day, doing so is still highly detrimental to their health. Besides damaging the respiratory system, medical research has found that smokers have an&nbsp;80% increased risk of dying from prostate cancer.<br><br>Instead of lighting a stick, healthier practices such as journaling and meditation will help manage both physical and mental well-being.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>7. Get regular prostate checkups</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Men who go to regular checkups help foster excellent prostate health. An annual prostate exam for men aged 50 and older and younger men who have family history is crucial. The checkup involves a&nbsp;digital rectal exam (DRE)&nbsp;where a doctor’s gloved finger is inserted into the rectum and physically feels around the prostate for any abnormality.<br><br>Another part of the exam is a&nbsp;prostate-specific antigen (PSA) blood test&nbsp;to check for high levels of PSA, which is an indication of prostate infection or cancer.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Keep Your Prostate Healthy</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As with all diseases, prevention is better than undergoing treatment for prostate cancer or any other related condition. Now that you are aware of how common prostate issues are, keeping a proactive approach to your health is an absolute must. Following these tips will help prevent prostate diseases, enabling you to live comfortably for many years.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are starting to experience any discomfort or symptoms in the general groin area, do not hesitate to seek help. Reach out to Makati Medical Center for proper diagnosis and&nbsp;urinary incontinence treatment&nbsp;related to renal and prostate conditions.</p>\n<!-- /wp:paragraph -->','6 Natural Ways to Keep Your Prostate Happy and Healthy','','publish','open','open','','6-natural-ways-to-keep-your-prostate-happy-and-healthy','','','2021-07-08 09:40:06','2021-07-08 09:40:06','',0,'http://cli.21lab.co/?p=37',0,'post','',0),(40,1,'2021-07-08 09:45:42','2021-07-08 09:45:42','<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\">One of the most unpleasant lifestyle conditions to have in today’s time and age is diabetes, where your body loses its ability to control the blood sugar levels in your body. With a plethora of other problems and effects that it has on our bodies, diabetes is known to slow down our healing. This raises another set of queries and confusions in people willing to take other treatments for different situations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"dropCap\":true} -->\n<p class=\"has-drop-cap\">This includes getting a dental implant. The problem is that while diabetes is ruining your overall health, a missing tooth can cause the situation to worsen with time. You see, a missing tooth can cause your cheeks to sag and bring more signs of ageing to your face than age itself can. But since common knowledge is that dental implants need at least 6 months to heal and are titanium posts inserted into your jaw bone, diabetes may pose a huge problem for people looking to get implants.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In such a case, the question about the safety of the use of dental implants is completely legitimate for diabetics to ask. Here is a quick look at this matter so you can get all the answers you need before you go for your dental implant procedure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Effect of Diabetes on Dental Implant</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Diabetes affects the entire body in ways that can be described as disruptive. For people looking to&nbsp;replace a missing tooth&nbsp;while also struggling with diabetes, there are a number of options. A dental implant is usually preferred by people when they need a treatment that lasts long, replicates the natural tooth as closely as it can, and provides support to the rest of the teeth.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, they rely on the body’s healing power so the root can be integrated into the jawbone. This is followed by the gums healing around the implant. This healing process is what makes the implant seem like a real tooth and a more permanent solution than bridges and dentures. However, as talked about above, diabetes gets in between the healing process, which significantly increases the chances of implant failure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While it is true that implants have a really high success rate (95%), but even they can fail if proper care is not taken. And an underlying condition like diabetes can significantly reduce the success rate as well.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>But Is It Safe?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Yes, if your diabetes is well under control and your health is completely in your favour, you can get a dental implant. In fact, a dental implant is a better option to help you heal and to follow diabetes based diet as compared to bridges and dentures. You don’t even have to worry about implant failure if you are on top of your health. And for knowing the exact status of whether you can get an implant or not, it is always important to disclose your exact medical history to your dentist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So the bottom line is that yes dental implants are safe for people with diabets, but it is more important to maintain and monitor your health before getting them. A comprehensive examination before the&nbsp;tooth implant procedure&nbsp;is a must. For the best results and complete care for all your dental needs, meet the professionals at Clove Dental. Book your appointment with a professional today.</p>\n<!-- /wp:paragraph -->','Are Dental Implants Safe for you If You Have Diabetes?','','publish','open','open','','are-dental-implants-safe-for-you-if-you-have-diabetes','','','2021-07-08 09:45:42','2021-07-08 09:45:42','',0,'http://cli.21lab.co/?p=40',0,'post','',0),(45,1,'2021-07-08 11:06:34','2021-07-08 11:06:34','<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\">I was recently asked an excellent question, and it was, “Can your doctors add or drop&nbsp;Medicare Advantage&nbsp;plans?”</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"dropCap\":true} -->\n<p class=\"has-drop-cap\">This is a very important question because, as I talk about this time and time again, the most important thing, in my opinion, when it comes to making a&nbsp;Medicare&nbsp;decision, is that you can see your preferred doctors and hospitals. Knowing whether or not those doctors and hospitals accept the Medicare plan you choose is a critical first step.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I don’t believe that all doctors and hospitals are made the same, and so if you want your Medicare to work for you, I think it’s imperative to know that your doctor accepts it.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To the point of this question, yes, they can drop and add Medicare plans. So what if your doctor accepts it today, and they drop it in the future? Or vice versa?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The thing is, doctors can opt-in or opt-out of Medicare Advantage plans or even an Original Medicare plan. So there is a risk of that happening.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We tend to see the drops happen more frequently with Medicare Advantage plans than we do with Original Medicare.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Since we all don’t know what will happen in the future, my advice to those of you who want a Medicare Advantage plan is:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Go into your Medicare decision knowing what Medicare Advantage plans your preferred doctor accepts.</li><li>Ask yourself, if my doctor drops this, am I okay staying inside this Medicare Advantage network? If the answer is no, then am I better off on traditional Medicare that gives me a bit more wiggle room?</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>It’s important to remember that you can change Medicare Advantage plans once a year. And so there are times you can switch between plans if your doctor drops one Advantage Plan. However, the hard part is if your doctor drops the Advantage plans and you then want to go back to traditional Medicare with a Medigap Plan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At that point, you may be subject to insurability rules and may not get a chance to switch from Medicare Advantage to Original Medicare.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So just be sure you’re looking at all the variables when making your Medicare decision. I don’t want you to regret it down the road.</p>\n<!-- /wp:paragraph -->','Can your doctor drop your Medicare Advantage plan?','','publish','open','open','','can-your-doctor-drop-your-medicare-advantage-plan','','','2021-07-08 11:06:34','2021-07-08 11:06:34','',0,'http://cli.21lab.co/?p=45',0,'post','',0),(48,1,'2021-07-08 11:14:11','2021-07-08 11:14:11','<!-- wp:paragraph -->\n<p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are complete. As many of us are excited to jump into socializing and some much-needed time with loved ones, it is important to take precautions post-vaccination to keep everyone’s safety in mind. Activities like dinning at a restaurant instead of take-out, or spending time indoors with a friend outside of your household are not out of reach. However, there are a few things to keep in mind once you have been fully vaccinated.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"h-when-are-you-considered-fully-vaccinated1\">When are you considered fully vaccinated? &nbsp;</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>According to the Centers for Disease Control and Prevention, or CDC, you are considered&nbsp;fully vaccinated&nbsp;two weeks after your second dose of either&nbsp;Pfizer-BioNTech&nbsp;or&nbsp;Moderna, or two weeks after a single-dose of the &nbsp;Johnson &amp; Johnson’s Janssen&nbsp;COVID-19 vaccines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"complete-covid-vaccination\">What activities are you able to participate in?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once you have been fully vaccinated, there are activities you can finally participate in to feel a sense of normalcy. Although it is recommended to still take precautions like social distancing and mask wearing, it is nice to finally feel that there is a light at the end of this COVID tunnel. Here are&nbsp;a few activities we can happily engage in&nbsp;with COVID safety in mind<sup><a href=\"https://www.ehealthmedicare.com/blog/covid/complete-covid-vaccination/#sources\">2</a></sup>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gathering indoors without masks or staying 6 feet apart with other vaccinated individuals.</li><li>Gather outdoors without wearing a mask. However, you should not gather without a mask if you are at a large venue or in a crowd of people.</li><li>You do not have to get tested or quarantine before or after traveling within the United States.</li><li>For international travel, destination requirements vary so be sure to check before travel. You will need to show a negative COVID-19 test result before boarding an international flight to the United States. It is still recommended to get tested 3-5 days after travel.</li><li>You do not need to get tested if you have been exposed to someone COVID-19 positive unless you experience symptoms. However, you should get tested and stay away from others if you live in a group setting or home and you are exposed to someone who has COVID.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 id=\"h-what-precautions-to-still-take1\">What precautions to still take&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A few&nbsp;precautions you should still take include&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Wear a mask in indoor public settings and avoid large gatherings.</li><li>Wear a mask while traveling.</li><li>Avoid gatherings with multiple households of unvaccinated people.</li><li>Avoid gathering indoors with a high-risk unvaccinated person.</li><li>Continue to follow guidelines in the workplace.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The CDC also recommends anyone taking medications that weaken the immune system or with any serious condition to consult their healthcare provider to discuss what activities are safe after getting vaccinated<sup><a href=\"https://www.ehealthmedicare.com/blog/covid/complete-covid-vaccination/#sources\">1</a></sup>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"h-antibody-testing\">Antibody testing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For some people, anti-body testing might be an option. According to the CDC, antibodies, or proteins made in response to infection, are detected through testing to see if they are in the blood of people post-infection. Antibodies are used to analyze the body’s efforts to fight off infection<sup>3</sup>. The CDC states, “In general, a positive antibody test is presumed to mean a person has been infected with SARS-CoV-2, the virus that causes COVID-19, at some point in the past. It does not mean they are currently infected.”</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In terms of cost, the SARS-CoV-2 antibody test is currently estimated to cost between $30 and $50, a price that increases to between $120 and $175 when administration costs are included&nbsp;<sup>4</sup>. In most cases, please contact your&nbsp;insurer&nbsp;for more accurate rates and coverage estimates.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are some precautions when it comes to this testing<sup>3</sup></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>This testing should not be used to determine if someone can return to work.</li><li>False negative or positive results are possible to occur.</li><li>If you receive a positive result but do not have symptoms or haven’t been around any COVID positive individuals, you are not likely to be currently infected.</li><li>It is recommended to continue taking precautions like mask wearing, frequent hand washing, and social distancing even if the antibody test results are positive.</li><li>Although testing positive for antibodies may aid in protecting you from getting infected with COVID, it is still unknown how much and how long the extent of the protection will be.</li></ul>\n<!-- /wp:list -->','So, You Have Completed Your COVID Vaccination.','','publish','open','open','','so-you-have-completed-your-covid-vaccination','','','2021-07-08 11:14:11','2021-07-08 11:14:11','',0,'http://cli.21lab.co/?p=48',0,'post','',0),(53,1,'2021-07-08 11:20:48','2021-07-08 11:20:48','<!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\">Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car accident. She asks you to wire money, begging you not to tell her parents. What would you do? Most likely, anything necessary to help your grandchild.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"h-the-grandparent-scam\">The Grandparent Scam</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Con artists know this and have taken&nbsp;advantage of that emotional response—even tracking down real-life details on Facebook about the families of potential victims to support their claims. Last year alone, this scam cost consumers $41 million.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But the “grandparent scam” is just one of many schemes to hit the unsuspecting. Crooks use email, phone calls and door-to- door advertising to get people to give up their money or personal information.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Older adults may especially be at risk, though fraud impacts people of all ages. People in their 60s, for example, filed fraud reports at nearly twice the rate of 20-somethings. The most common schemes targeting seniors are technical support scams, friend or business impostor scams, real estate offers and sweepstakes frauds.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In one crafty con, telemarketers told seniors they could get up to $10,000 in government or private grant money. The swindlers asked their victims for an upfront fee and then offered to increase the grant or get them the money faster if they’d pay additional fees.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The fraudsters bilked consumers out of millions of dollars before the Federal Trade Commission (FTC) shut them down.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another group of grifters used online ads, mailers and live events to sell a coaching program that promised to help people start their own online business and earn a large income. The scammers charged a $49 fee and then pressured the participants to buy pricey membership packages. Some victims lost more than $20,000.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Older adults have also been targeted for identity theft. In one hoax, scammers distrib- uted fliers to seniors, promising they’d receive money from the government if they completed the questionnaire. More than 25,000 people were tricked into giving up sensitive personal information.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How can you defend yourself against these cons? Experts offer these tips:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"h-protect-your-identity\">Protect your identity</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Don’t give your Social Security number if something feels fishy; trust your gut. Shred documents containing personal information before throwing them away.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"h-when-a-stranger-calls-think-twice\">When a stranger calls, think twice</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If a caller asks you to wire money or provide personal information over the phone, don’t take the request at face value. Scammers might pre- tend to be with the government, the police or a business. Hang up and call the organization directly to double-check (get the number from the official website). No government agency will ever ask you to wire money.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"h-don-t-donate-by-phone\">Don’t donate by phone</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If someone representing a charity calls you for a donation, ask him or her to send you information by mail instead.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"h-in-a-crisis-verify\">In a crisis, verify.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If a friend or family member calls, texts or emails for help, call the person back to confirm that the plea for aid truly came from him or her.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Have a code word set up with your loved ones or ask them a question only they would know the answer to!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you believe a scammer has contacted you, report it to the FTC at 877-FTC-HELP or ftc.gov/complaint.&nbsp;</p>\n<!-- /wp:paragraph -->','The Cheat is On: Protecting Yourself From Scams','','publish','open','open','','the-cheat-is-on-protecting-yourself-from-scams','','','2021-07-08 11:20:48','2021-07-08 11:20:48','',0,'http://cli.21lab.co/?p=53',0,'post','',0),(57,1,'2021-08-17 09:59:53','2021-08-17 09:59:53','<p>\r\n	<label><span class=\"lb-none\">Email address:</span>\r\n		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your email address\" required />\r\n</label>\r\n</p>\r\n\r\n<p>\r\n	<input type=\"submit\" value=\"Sign up\" />\r\n</p>','Sign up Footer','','publish','closed','closed','','57','','','2021-08-17 09:59:53','2021-08-17 09:59:53','',0,'http://cli.21lab.co/mc4wp-form/57/',0,'mc4wp-form','',0),(58,1,'2021-07-09 02:36:00','2021-07-09 02:36:00','<!-- wp:paragraph {\"dropCap\":true} -->\n<p class=\"has-drop-cap\">We’ve all been there. You think that twinge is nothing to worry about. You push through. Months pass&nbsp;but you can’t shake the nagging pain, and Dr. Google doesn’t provide any relief. You finally admit you have a problem you can’t solve on your own.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>“It blows my mind how much attention, money, and energy people put into their gear&nbsp;but then don’t put into the thing that uses the gear,” says&nbsp;Nicole Haas, a physical therapist based in&nbsp;Boulder, Colorado. “Everyone knows you need to tune your skis and tune your bike. PTs are quite literally the mechanics of humans.”</p><cite>&nbsp;Nicole Haas</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>There are a lot of misconceptions about&nbsp;physical therapy: it’s a long and expensive process,&nbsp;it’s only for severe injuries,&nbsp;you’ll have to stop doing what you love. But often it takes just&nbsp;a session or two to get back on the right track, and plenty of PTs encourage their patients to keep doing their sport (with modifications) during the recovery process. The faster you seek help, the faster you’ll likely be back in action.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Deciding to see a medical professional is the first and hardest step. Once you’ve committed, follow Haas’s advice, below, on how to make the most of physical therapy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Recognize When You Need Help&nbsp;</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Chronic&nbsp;overuse injuries&nbsp;can be challenging to recognize and accept. If something has been lingering for two weeks or longer and isn’t getting better, Haas recommends seeing a medical professional for an evaluation. The discomfort doesn’t need to be consistent throughout the day, Haas adds. “If the pain shows up whenever you do a particular sport or activity, there’s a biomechanical problem,” she says.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Whether you should see a PT or your primary-care physician first is another consideration. The&nbsp;direct access&nbsp;law allows patients in all 50 states to see a licensed PT without a prescription or referral from a physician, according to the American Physical Therapy Association.&nbsp;However, there are limitations in&nbsp;certain states. If you think your injury is biomechanical and doesn’t stem from any underlying medical issues, going directly to a PT can save you valuable time, not to mention co-pays. If your PT has any concerns, they&nbsp;can always refer you back to your doctor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You might be inclined to just take a few weeks off, but passive rest won’t correct the underlying issues that led to the injury in the first place. Early intervention means quicker recovery, potentially fewer visits, and higher odds that you’ll be able to continue doing your sport (with modifications) during the recovery period.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Choose the Right PT</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Physical therapists span a broad spectrum&nbsp;of approaches, training, philosophies, and experience. Research a PT’s education, specialization, and experience, and ask around for recommendations. Physical therapists who work&nbsp;with athletes frequently—and, ideally, are&nbsp;athletes&nbsp;themselves—will better understand your passion and goals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If your PT is part of a larger practice, ensure you’ll get to see the same person each time, rather than a rotating cast. It’s useful to ask how much face-to-face time you’ll get during each session, too. If the PT keeps an open line of communication between visits, responding to calls, texts, or emails, you may see faster progress and more personalized care.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Be a Good Historian</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your PT is a detective. During your initial evaluation, they&nbsp;need&nbsp;as much information as possible to create a treatment plan. Create a timeline of your injury in advance, including how it has progressed or changed over time, what aggravates the pain, and&nbsp;what makes it feel better. Note when the pain showed up&nbsp;and whether&nbsp;anything in particular provoked it, like a crash or a tweaky movement. If there wasn’t a specific incident, think about when you first started to feel symptoms. What else was going on? Did you increase or change your training? Even simple things like&nbsp;new running shoes&nbsp;or ski boots&nbsp;or&nbsp;long hours at your desk&nbsp;can trigger a problem.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Use Physical Therapy as an Educational Opportunity</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Haas sees two types of patients: those who&nbsp;treat their appointment like an obligation and move disinterestedly through a laundry list of exercises, and those who&nbsp;show up curious to learn about their body and how to care for it. “The success of therapy isn’t just about doing the exercises&nbsp;but understanding the issue and the things that can be done throughout one’s daily life,” says Haas. Come with an open mind,&nbsp;and ask questions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Overcommunicate</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tell your PT what you’re feeling throughout your appointment, whether you think it’s important information or not. “If I have you move in a certain way, I’m not just looking for pain, I might be looking for tightness or other sensations.” Haas says.&nbsp;</p>\n<!-- /wp:paragraph -->','How to Get the Most Out of Physical Therapy','','publish','open','open','','how-to-get-the-most-out-of-physical-therapy','','','2021-07-09 02:36:00','2021-07-09 02:36:00','',0,'http://cli.21lab.co/?p=58',0,'post','',0),(61,1,'2021-07-09 02:43:29','2021-07-09 02:43:29','<!-- wp:paragraph {\"dropCap\":true} -->\n<p class=\"has-drop-cap\">It’s easy to feel overwhelmed by everything you’re hearing about coronavirus disease 2019 (COVID-19) right now. It’s also understandable if your children are feeling anxious, too. Children might find it difficult to understand what they are seeing online or on TV –&nbsp;or hearing from other people –&nbsp;so they can be particularly vulnerable to feelings of anxiety, stress and sadness. But having an open, supportive discussion with your children can help them understand, cope and even make a positive contribution for others.<br>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>1.&nbsp; Ask open questions and listen</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Start by inviting your child to talk about the issue. Find out how much they already know and follow their lead. If they are particularly young and haven’t already heard about the outbreak, you may not need to raise the issue – just take the chance to remind them about good hygiene practices without introducing new fears.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Make sure you are in a safe environment and allow your child to talk freely. Drawing, stories and other activities may help to open up a discussion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Most importantly, don’t minimize or avoid their concerns. Be sure to acknowledge their feelings and assure them that it’s natural to feel scared about these things. Demonstrate that you’re listening by giving them your full attention, and make sure they understand that they can talk to you and their teachers whenever they like.<br>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>2.&nbsp; Be honest: explain the truth in a child-friendly way</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Children have a right to truthful information about what’s going on in the world, but adults also have a responsibility to keep them safe from distress. Use age-appropriate language, watch their reactions, and be sensitive to their level of anxiety.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you can’t answer their questions, don’t guess. Use it as an opportunity to explore the answers together. Websites of international organizations like&nbsp;UNICEF&nbsp;and the&nbsp;World Health Organization&nbsp;are great sources of information. Explain that some information online isn’t accurate, and that it’s best to trust the experts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>3.&nbsp; Show them how to protect themselves and their friends</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the best ways to keep children safe from coronavirus and other diseases is to simply encourage regular handwashing. It doesn\'t need to be a scary conversation.&nbsp;Sing along with The Wiggles&nbsp;or&nbsp;follow this dance&nbsp;to make learning fun.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can also show children how to&nbsp;cover a cough or a sneeze with their elbow, explain that it’s best not to get too close to people who have those symptoms, and ask them to tell you if they start to feel like they have a fever, cough or are having difficulty breathing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>4.&nbsp;Offer reassurance</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When we’re seeing lots of troubling images on TV or online, it can sometimes feel like the crisis is all around us. Children may not distinguish between images on screen and their own personal reality, and they may believe they’re in imminent danger. You can help your children cope with the stress by making opportunities for them to play and relax, when possible. Keep regular routines and schedules as much as possible, especially before they go to sleep, or help create new ones in a new environment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing an outbreak in your area, remind your children that they are not likely to catch the disease, that most people who do have coronavirus don’t get very sick, and that lots of adults are working hard to keep your family safe.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If your child does feel unwell, explain that they have to stay at home/at the hospital because it is safer for them and their friends. Reassure them that you know it is hard (maybe scary or even boring) at times, but that following the rules will help keep everyone safe.<br>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>5.&nbsp;Check if they are experiencing or spreading stigma</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The outbreak of coronavirus has brought with it numerous reports of racial discrimination around the world, so it’s important to check that your children are neither experiencing nor contributing to bullying.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Explain that coronavirus has nothing to do with what someone looks like, where they are from or what language they speak. If they have been called names or bullied at school, they should feel comfortable telling an adult whom they trust.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remind your children that everyone deserves to be safe at school. Bullying is always wrong and we should each do our part to spread kindness and support each other.<br>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>6.&nbsp;Look for the helpers</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It’s important for children to know that people are helping each other with acts of kindness and generosity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Share stories of health workers, scientists and&nbsp;young people, among others, who are working to stop the outbreak and keep the community safe. It can be a big comfort to know that compassionate people are taking action.<br>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>7.&nbsp;Take care of yourself</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You’ll be able to help your kids better if you’re coping, too. Children will pick up on your own response to the news, so it helps them to know you’re calm and in control.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’re feeling anxious or upset, take time for yourself and reach out to other family, friends and trusted people in your community. Make some time to do things that help you relax and recuperate.&nbsp;<br>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>8.&nbsp;Close conversations with care</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It’s important to know that we’re not leaving children in a state of distress. As your conversation wraps up, try to gauge their level of anxiety by watching their body language, considering whether they’re using their usual tone of voice and watching their breathing.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remind your children that they can have other difficult conversations with you at any time. Remind them that you care, you’re listening and that you’re available whenever they’re feeling worried.</p>\n<!-- /wp:paragraph -->','How to Talk to Your Child About Coronavirus Disease 2019','','publish','open','open','','how-to-talk-to-your-child-about-coronavirus-disease-2019','','','2021-07-09 02:43:29','2021-07-09 02:43:29','',0,'http://cli.21lab.co/?p=61',0,'post','',0),(65,1,'2021-07-09 02:51:01','2021-07-09 02:51:01','<!-- wp:paragraph -->\n<p><strong>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are often very good reasons why medicines acquire the brand names that they do.&nbsp;</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"dropCap\":true} -->\n<p class=\"has-drop-cap\">You can learn a lot about medicines based on their brand name.&nbsp;<strong>Montelukast</strong>, a drug used to treat COPD, takes its name from&nbsp;<em>Montreal</em>&nbsp;– the city in which it was discovered. While the relevant fact may or may not hold interest, the name origin acts as an anchor to help you recall the active ingredient. And, as pharmacists, knowing the names of medicines is an absolute must.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Though there are many more, let’s take a look at the top 20 drug name origins!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Drug Name Origins</h3>\n<!-- /wp:heading -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Medicine</strong></td><td><strong>Origin</strong></td></tr><tr><td><strong>Premarin</strong></td><td>Refers to “<strong>pregnant mares’ urine</strong>”, the source from which the conjugated estrogens are taken. Premarin is used to treat postmenopausal women suffering from hot flashes.</td></tr><tr><td><strong>Warfarin</strong></td><td>Takes its name from the acronym&nbsp;<strong>WARF</strong>&nbsp;– Wisconsin Alumni Research Foundation, and ‘-arin’, coming from the link between warfarin and coumarin.</td></tr><tr><td><strong>Morphine</strong></td><td>Takes its name from the Greek god of dreams,&nbsp;<strong>Morpheus</strong>.</td></tr><tr><td><strong>Montelukast</strong></td><td>Montelukast, a drug used to treat COPD, takes its name from&nbsp;<strong>Montreal</strong>, the site of its discovery.</td></tr><tr><td><strong>Glucophage</strong></td><td>The medicine whose active ingredient is metformin, a drug used to treat type 2 diabetes. The name Glucophage derives from the Greek to mean “<strong>glucose eater</strong>”.</td></tr><tr><td><strong>Halcion</strong></td><td>Triazolam is the active ingredient of Halcion; a drug used to treat severe insomnia. The name “Halcion” comes from the Greek concept of “<strong>calmness</strong>” – now most associated with calmness at sea.</td></tr><tr><td><strong>Lasix</strong></td><td>Refers to “<strong>last 6 hours</strong>”. Lasix is a medicine used to treat fluid build-up (its active ingredient is the drug, furosemide), with diuresis being complete within 6 hours.</td></tr><tr><td><strong>Nystatin</strong></td><td>An antifungal medicine whose name derives from&nbsp;<strong>New York State Department</strong>; the developers of the drug having worked in that department during its discovery.</td></tr><tr><td><strong>Rapamune</strong></td><td>Whose active ingredient is sirolimus. The drug itself was first isolated from samples taken from&nbsp;<strong>Rapa Nui</strong>, the native name of what is called Easter Island.</td></tr><tr><td><strong>Valium</strong></td><td>Takes its name from the Latin word, “<strong>vale</strong>” – referring to “farewell / goodnight”. The active ingredient of Valium, diazepam, is used to treat a wide variety of conditions such as anxiety, seizures, and muscle spasms.</td></tr><tr><td><strong>Emend</strong></td><td>Referring to “<strong>ending emesis</strong>”, or vomiting. The active ingredient of Emend is aprepitant, an NK1 receptor antagonist.</td></tr><tr><td><strong>Ursodiol</strong></td><td>The active ingredient of which is ursodeoxycholic acid, a drug used to reduce gallstone formation. Ursodiol takes its name from “<strong>urso</strong>”, or “bear”, as bear bile is a source of the drug.</td></tr><tr><td><strong>Actigall</strong></td><td>Also contains the active ingredient ursodeoxycholic acid, though its name refers to “<strong>acting on the gallbladder</strong>”.</td></tr><tr><td><strong>Prevacid</strong></td><td>“<strong>Preventing acid formation</strong>”. That’s because the active ingredient of Prevacid is lansoprazole, a proton-pump inhibitor.</td></tr><tr><td><strong>Ambien</strong></td><td>Takes its name from the Spanish to mean “<strong>Good morning!</strong>” (AM – morning and ‘bien’ – good). The active ingredient of Ambien is zolpidem.</td></tr><tr><td><strong>Fosamax</strong></td><td>The active ingredient of which is alendronic acid. The name Fosamax comes from the Latin “<strong>os</strong>” to mean “bone” and “<strong>max</strong>”, to maximize its effect.</td></tr><tr><td><strong>Macrobid</strong></td><td>Takes its name from “<strong>Macro</strong>-“, referring to Macrodantin, and “-<strong>bid</strong>”, referring to the Latin for twice daily. The active ingredient of Macrodantin is the antibacterial drug, nitrofurantoin.</td></tr><tr><td><strong>Xarelto</strong></td><td>The active ingredient of which is the anticoagulant medicine, rivaroxaban. Xarelto takes its name from factor ‘<strong>Xa’</strong>, the factor that rivaroxaban inhibits to impart its anticoagulant properties.</td></tr><tr><td><strong>Tylenol</strong></td><td>Takes its name from the chemical structure of acetaminophen (paracetamol) – N-ace<strong>TYL</strong>-para-aminoPH<strong>ENOL</strong>.</td></tr><tr><td><strong>Lunesta</strong></td><td>Takes its name from “<strong>Luna</strong>”, the Latin word for the Moon. The active ingredient of Lunesta is eszopiclone, a drug used to treat insomnia.</td></tr><tr><td><strong>Flomax</strong></td><td>A drug used in the treatment of benign prostatic hypertrophy, a condition that causes limited urine output. The active ingredient of Flomax, tamsulosin, is an alpha-receptor blocker that promotes urine flow.</td></tr></tbody></table></figure>\n<!-- /wp:table -->','Top 20 Drug and Medicine Name Origins!','','publish','open','open','','top-20-drug-and-medicine-name-origins','','','2021-07-09 02:51:01','2021-07-09 02:51:01','',0,'http://cli.21lab.co/?p=65',0,'post','',0),(70,1,'2021-07-09 02:56:02','2021-07-09 02:56:02','<!-- wp:paragraph -->\n<p><strong>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed to be a mirror to overall health. One of the latest symptoms that is being noticed in association with coronavirus infection is COVID tongue where dentists may play a major role.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"dropCap\":true} -->\n<p class=\"has-drop-cap\">The term “COVID tongue” was coined recently after Mr Tim Spector, a professor of genetic epidemiology at King’s College London tweeted about patients reporting with COVID tongue and tongue ulcers. Mr Spector heads the ZOE COVID-19 Symptom Study app, where participants submit symptom reports on a daily basis. He found in his research that almost 1-2 patients out of every 500 got some strange symptoms in their mouths with may include swelling in the tongue, strange patches on the tongues and ulcers. According to the ZOE website, however, there is an increased user submissions of abnormal looking tongue, in particular white and patchy appearance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>According to The British Journal of Dermatology, which published a report on 666 patients, 25.7% patients had oral cavity symptoms and 3.9% were reported having tongue swelling with patchy depapillation. As per Oral Diseases report, COVID‐19 patients frequently develop oral lesions symptoms related to a certain state of immunosuppression where stress may also play a crucial role in the appearance of these oral conditions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The British Dental Journal, published by Springer Nature, has suggested that the COVID Tongue has a resemblance of Geographic Tongue, an inflammatory condition affecting the surface of tongue. While there may be a possible association of Geographic Tongue with SARS-CoV-2 infection, there are only two communications in the literature reporting it as part of COVID-19 illness till date. The symptoms may be linked to the elevated levels of the inflammatory Cytokine Interleukin-6 (IL-6) in both Geographic Tongue and SARS-CoV-2 infection, as well as higher angiotensin-converting enzyme 2 (ACE2) receptor expression in the tongue where ACE2 receptors are also the entry point of the SARS-CoV-2 virus.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The diagnostic value of COVID Tongue is still unknown and it should be treated with caution. According to the ZOE website, these changes to the mouth or tongue may not be the only symptom of COVID-19, or whether they tend to come earlier or later in the illness. Whilst a report by NDTV also claims that COVID Tongue could be one of the “non-classic symptoms” that tends to get overlooked since not every ulcer or patch in the mouth is associated with COVID. This may be very early sign in a very recent finding.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Contributed by</strong>: Lt Gen Dr Vimal Arora &amp; Dr Rahul Kumar Raman</p>\n<!-- /wp:paragraph -->','COVID Tongue: Be Considered as a Symptom After All?','','publish','open','open','','covid-tongue-be-considered-as-a-symptom-after-all','','','2021-07-09 02:56:02','2021-07-09 02:56:02','',0,'http://cli.21lab.co/?p=70',0,'post','',0),(75,1,'2021-07-09 03:41:13','0000-00-00 00:00:00','','Temperature Gun','','draft','open','closed','','','','','2021-07-09 03:41:13','0000-00-00 00:00:00','',0,'http://cli.21lab.co/?post_type=product&amp;p=75',0,'product','',0),(79,1,'2021-07-09 03:50:24','2021-07-09 03:50:24','Take your temperature is accurately and hassle-free. This Infrared Forehead Thermometer is a safe, sanitary, and non-invasive way to take clinically accurate readings in just 1 second. Touch-Free Infrared Forehead Thermometer measures body and object and liquid temperatures. Safe, sanitary and noninvasive temperature readings – body temperature measurements taken at forehead. Fever icon indicator can quickly determine normal or high measurements. Illuminated, backlit display for low light use.','Non Contact Infrared Thermometer','Features: Digital Display, Instant Measurement','publish','open','closed','','non-contact-infrared-thermometer','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'http://cli.21lab.co/?post_type=product&amp;p=79',0,'product','',2),(84,1,'2022-05-17 13:39:30','2021-07-09 04:23:46',' ','','','publish','closed','closed','','the-clilab-medical-shop','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',0,'http://cli.21lab.co/the-clilab-medical-shop/',1,'nav_menu_item','',0),(85,1,'2022-05-17 13:39:30','2021-07-09 04:23:46',' ','','','publish','closed','closed','','85','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',0,'http://cli.21lab.co/85/',3,'nav_menu_item','',0),(86,1,'2022-05-17 13:39:30','2021-07-09 04:23:46',' ','','','publish','closed','closed','','86','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',0,'http://cli.21lab.co/86/',4,'nav_menu_item','',0),(87,1,'2022-05-17 13:39:30','2021-07-09 04:23:46',' ','','','publish','closed','closed','','87','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',0,'http://cli.21lab.co/87/',2,'nav_menu_item','',0),(89,1,'2021-07-09 04:26:21','2021-07-09 04:26:21','.ctaBox h2 {\n	font-family:\"Fraunces\";\n}\n.home:not(.off-canvas-left-active) .header-transparent {\n	background: rgba(255,255,255,.8);\n	box-shadow: 0 2px 4px rgba(42,42,42,.1)\n}\n#site .elementor-widget-icon-list.elementor-icon-list--layout-inline.elementor-align-center ul li .elementor-icon-list-icon svg {\n	width: 64px;\n	height: 64px;\n	margin: 0;\n}\n#site .rqform .form-row.radio{\n	color:black;\n}\n.wpcf7-list-item-label{\n	color:black;\n}','clilab-child','','publish','closed','closed','','clilab-child','','','2022-05-17 13:16:21','2022-05-17 13:16:21','',0,'http://cli.21lab.co/clilab/',0,'custom_css','',0),(98,1,'2021-07-09 05:11:47','2021-07-09 05:11:47','','Non Contact Infrared Thermometer - Black','color: Black','publish','closed','closed','','non-contact-infrared-thermometer-black','','','2021-07-09 05:11:47','2021-07-09 05:11:47','',79,'http://cli.21lab.co/?post_type=product_variation&amp;p=98',1,'product_variation','',0),(99,1,'2021-07-09 05:11:47','2021-07-09 05:11:47','','Non Contact Infrared Thermometer - Blue','color: Blue','publish','closed','closed','','non-contact-infrared-thermometer-blue','','','2021-07-09 05:11:47','2021-07-09 05:11:47','',79,'http://cli.21lab.co/?post_type=product_variation&amp;p=99',2,'product_variation','',0),(102,1,'2021-07-09 05:38:30','2021-07-09 05:38:30','Wildcraft Outdoor Face Mask W95 is engineered with a 6-layered triple filtration system, a perfect outdoor companion that keeps you safe from dangerous microbes, pollutants, dust, particulate matter, and smoke from vehicle exhausts, factories, bushfires, etc.','Wildcraft Outdoor Face Mask','Do not share mask with any individuals','publish','open','closed','','wildcraft-outdoor-face-mask','','','2021-07-09 05:38:30','2021-07-09 05:38:30','',0,'http://cli.21lab.co/?post_type=product&amp;p=102',0,'product','',0),(105,1,'2021-07-09 07:44:10','2021-07-09 07:44:10','Helps to maintain the structural integrity of bones along with the support of vitamins and minerals.','Fast & up Calcio - Orange Flavour','Supplement for maintaining healthy bones.','publish','open','closed','','fast-up-calcio-orange-flavour','','','2021-07-09 07:44:10','2021-07-09 07:44:10','',0,'http://cli.21lab.co/?post_type=product&amp;p=105',0,'product','',0),(109,1,'2021-07-09 07:55:57','2021-07-09 07:55:57','Jamieson Vitamin D3 plays a key role in the maintenance of good health while promoting the development of bones and teeth and helping the body effectively absorb calcium.','Jamieson Vitamin D3 2000 IU 60 tbl','Helps to prevent vitamin D deficiency','publish','open','closed','','jamieson-vitamin-d3-2000-iu-60-tbl','','','2021-07-09 07:55:57','2021-07-09 07:55:57','',0,'http://cli.21lab.co/?post_type=product&amp;p=109',0,'product','',0),(112,1,'2021-07-09 08:15:04','2021-07-09 08:15:04','This is our back and mat manual wheelchair which can provides comfort and mobility in an economical package. Complete with front riggings packaged with the chair, the wheelchair combines style and durability. Perfect for a variety of user needs from temporary, post-surgery use to longer-term use, the wheelchair features swing-out footrests to make transferring in and out of the wheelchair easier and wheel locks for added security','Lightweight Folding Manual Wheelchair','Made of high quality PVC mats and steel frame.','publish','open','closed','','lightweight-folding-manual-wheelchair','','','2021-07-09 08:15:04','2021-07-09 08:15:04','',0,'http://cli.21lab.co/?post_type=product&amp;p=112',0,'product','',0),(117,1,'2021-07-09 08:18:25','2021-07-09 08:18:25','','Lightweight Folding Manual Wheelchair - Black, 21\'\'','color: Black, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-black','','','2021-07-09 08:18:25','2021-07-09 08:18:25','',112,'http://cli.21lab.co/?post_type=product_variation&amp;p=117',1,'product_variation','',0),(118,1,'2021-07-09 08:18:25','2021-07-09 08:18:25','','Lightweight Folding Manual Wheelchair - Black, 33\'\'','color: Black, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-black','','','2021-07-09 08:18:25','2021-07-09 08:18:25','',112,'http://cli.21lab.co/?post_type=product_variation&amp;p=118',2,'product_variation','',0),(119,1,'2021-07-09 08:18:25','2021-07-09 08:18:25','','Lightweight Folding Manual Wheelchair - Red, 21\'\'','color: Red, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-red','','','2021-07-09 08:18:25','2021-07-09 08:18:25','',112,'http://cli.21lab.co/?post_type=product_variation&amp;p=119',3,'product_variation','',0),(120,1,'2021-07-09 08:18:25','2021-07-09 08:18:25','','Lightweight Folding Manual Wheelchair - Red, 33\'\'','color: Red, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-red','','','2021-07-09 08:18:25','2021-07-09 08:18:25','',112,'http://cli.21lab.co/?post_type=product_variation&amp;p=120',4,'product_variation','',0),(121,1,'2021-07-09 08:18:25','2021-07-09 08:18:25','','Lightweight Folding Manual Wheelchair - Silver, 21\'\'','color: Silver, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-silver','','','2021-07-09 08:18:25','2021-07-09 08:18:25','',112,'http://cli.21lab.co/?post_type=product_variation&amp;p=121',5,'product_variation','',0),(122,1,'2021-07-09 08:18:25','2021-07-09 08:18:25','','Lightweight Folding Manual Wheelchair - Silver, 33\'\'','color: Silver, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-silver','','','2021-07-09 08:18:25','2021-07-09 08:18:25','',112,'http://cli.21lab.co/?post_type=product_variation&amp;p=122',6,'product_variation','',0),(123,1,'2021-07-09 08:23:59','2021-07-09 08:23:59','Take your temperature is accurately and hassle-free. This Infrared Forehead Thermometer is a safe, sanitary, and non-invasive way to take clinically accurate readings in just 1 second. Touch-Free Infrared Forehead Thermometer measures body and object and liquid temperatures. Safe, sanitary and noninvasive temperature readings – body temperature measurements taken at forehead. Fever icon indicator can quickly determine normal or high measurements. Illuminated, backlit display for low light use.','Non Contact Infrared Thermometer','Features: Digital Display, Instant Measurement','publish','open','closed','','non-contact-infrared-thermometer-2','','','2021-07-09 08:23:59','2021-07-09 08:23:59','',0,'http://cli.21lab.co/?post_type=product&amp;p=123',0,'product','',0),(124,1,'2021-07-09 08:23:59','2021-07-09 08:23:59','','Non Contact Infrared Thermometer - Black','color: Black','publish','closed','closed','','non-contact-infrared-thermometer-black-2','','','2021-07-09 08:23:59','2021-07-09 08:23:59','',123,'http://cli.21lab.co/?post_type=product_variation&amp;p=124',1,'product_variation','',0),(125,1,'2021-07-09 08:23:59','2021-07-09 08:23:59','','Non Contact Infrared Thermometer - Blue','color: Blue','publish','closed','closed','','non-contact-infrared-thermometer-blue-2','','','2021-07-09 08:23:59','2021-07-09 08:23:59','',123,'http://cli.21lab.co/?post_type=product_variation&amp;p=125',2,'product_variation','',0),(126,1,'2021-07-09 08:28:57','2021-07-09 08:28:57','This is our back and mat manual wheelchair which can provides comfort and mobility in an economical package. Complete with front riggings packaged with the chair, the wheelchair combines style and durability. Perfect for a variety of user needs from temporary, post-surgery use to longer-term use, the wheelchair features swing-out footrests to make transferring in and out of the wheelchair easier and wheel locks for added security','Lightweight Folding Manual Wheelchair','Made of high quality PVC mats and steel frame.','publish','open','closed','','lightweight-folding-manual-wheelchair-2','','','2022-05-17 09:15:15','2022-05-17 09:15:15','',0,'http://cli.21lab.co/?post_type=product&amp;p=126',0,'product','',2),(127,1,'2021-07-09 08:28:57','2021-07-09 08:28:57','','Lightweight Folding Manual Wheelchair - Black, 21\'\'','color: Black, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-black-2','','','2021-07-09 08:28:57','2021-07-09 08:28:57','',126,'http://cli.21lab.co/?post_type=product_variation&amp;p=127',1,'product_variation','',0),(128,1,'2021-07-09 08:28:57','2021-07-09 08:28:57','','Lightweight Folding Manual Wheelchair - Black, 33\'\'','color: Black, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-black-2','','','2021-07-09 08:28:57','2021-07-09 08:28:57','',126,'http://cli.21lab.co/?post_type=product_variation&amp;p=128',2,'product_variation','',0),(129,1,'2021-07-09 08:28:57','2021-07-09 08:28:57','','Lightweight Folding Manual Wheelchair - Red, 21\'\'','color: Red, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-red-2','','','2021-07-09 08:28:57','2021-07-09 08:28:57','',126,'http://cli.21lab.co/?post_type=product_variation&amp;p=129',3,'product_variation','',0),(130,1,'2021-07-09 08:28:57','2021-07-09 08:28:57','','Lightweight Folding Manual Wheelchair - Red, 33\'\'','color: Red, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-red-2','','','2021-07-09 08:28:57','2021-07-09 08:28:57','',126,'http://cli.21lab.co/?post_type=product_variation&amp;p=130',4,'product_variation','',0),(131,1,'2021-07-09 08:28:57','2021-07-09 08:28:57','','Lightweight Folding Manual Wheelchair - Silver, 21\'\'','color: Silver, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-silver-2','','','2021-07-09 08:28:57','2021-07-09 08:28:57','',126,'http://cli.21lab.co/?post_type=product_variation&amp;p=131',5,'product_variation','',0),(132,1,'2021-07-09 08:28:57','2021-07-09 08:28:57','','Lightweight Folding Manual Wheelchair - Silver, 33\'\'','color: Silver, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-silver-2','','','2021-07-09 08:28:57','2021-07-09 08:28:57','',126,'http://cli.21lab.co/?post_type=product_variation&amp;p=132',6,'product_variation','',0),(134,1,'2021-07-09 08:46:56','2021-07-09 08:46:56','Jamieson D3 Drops 1,000 IU is a potent format that delivers 1,000 IU of pure tasteless vitamin D3 per drop to promote the development of bones and teeth and help in the absorption of calcium.','Jamieson Vitamin D3 1000 IU Drops','Easy-to-take and absorb Vitamin D3 in droplet form','publish','open','closed','','jamieson-vitamin-d3-1000-iu-drops','','','2022-05-17 09:15:15','2022-05-17 09:15:15','',0,'http://cli.21lab.co/?post_type=product&amp;p=134',0,'product','',2),(138,1,'2021-07-09 09:02:53','2021-07-09 09:02:53','Upper arm blood pressure monitors measure directly at heart level and therefore provide precise measurements. Whether they have easy-to-use single-button operation, a stylish black touch sensor display or a particularly ergonomic design, our products all have one thing in common reliable results for your health.','Arms Blood Pressure Monitor','Easy-to-read, blue illuminated XL display','publish','open','closed','','arms-blood-pressure-monitor','','','2021-07-09 09:02:53','2021-07-09 09:02:53','',0,'http://cli.21lab.co/?post_type=product&amp;p=138',0,'product','',0),(143,1,'2021-07-09 09:14:16','2021-07-09 09:14:16','<span class=\"a-list-item\">The face mask reusable can fully customize to most faces for maximum comfort. The adjustable face mask is size adjustable from 4in to 5.1in to fit small, regular or large size face. Tips: Please refer to image 5 to adjust suitable size of your mask</span>','Reusable Cloth Face Masks 100% Cotton','Washable Adjustable Breathable Fabric Mask with Filter Pocket','publish','open','closed','','reusable-cloth-face-masks-100-cotton','','','2021-07-09 09:14:16','2021-07-09 09:14:16','',0,'http://cli.21lab.co/?post_type=product&amp;p=143',0,'product','',0),(147,1,'2021-07-09 09:13:05','2021-07-09 09:13:05','','Reusable Cloth Face Masks 100% Cotton - Black','color: Black','publish','closed','closed','','reusable-cloth-face-masks-100-cotton','','','2021-07-09 09:13:05','2021-07-09 09:13:05','',143,'http://cli.21lab.co/?post_type=product_variation&amp;p=147',1,'product_variation','',0),(148,1,'2021-07-09 09:13:47','2021-07-09 09:13:47','','Reusable Cloth Face Masks 100% Cotton - Blue','color: Blue','publish','closed','closed','','reusable-cloth-face-masks-100-cotton-2','','','2021-07-09 09:13:47','2021-07-09 09:13:47','',143,'http://cli.21lab.co/?post_type=product_variation&amp;p=148',0,'product_variation','',0),(149,1,'2021-07-09 09:20:58','2021-07-09 09:20:58','This is our back and mat manual wheelchair which can provides comfort and mobility in an economical package. Complete with front riggings packaged with the chair, the wheelchair combines style and durability. Perfect for a variety of user needs from temporary, post-surgery use to longer-term use, the wheelchair features swing-out footrests to make transferring in and out of the wheelchair easier and wheel locks for added security','Lightweight Folding Manual Wheelchair','Made of high quality PVC mats and steel frame.','publish','open','closed','','lightweight-folding-manual-wheelchair-3','','','2021-07-09 09:20:58','2021-07-09 09:20:58','',0,'http://cli.21lab.co/?post_type=product&amp;p=149',0,'product','',0),(150,1,'2021-07-09 09:20:59','2021-07-09 09:20:59','','Lightweight Folding Manual Wheelchair - Black, 21\'\'','color: Black, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-black-3','','','2021-07-09 09:20:59','2021-07-09 09:20:59','',149,'http://cli.21lab.co/?post_type=product_variation&amp;p=150',1,'product_variation','',0),(151,1,'2021-07-09 09:20:59','2021-07-09 09:20:59','','Lightweight Folding Manual Wheelchair - Black, 33\'\'','color: Black, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-black-3','','','2021-07-09 09:20:59','2021-07-09 09:20:59','',149,'http://cli.21lab.co/?post_type=product_variation&amp;p=151',2,'product_variation','',0),(152,1,'2021-07-09 09:20:59','2021-07-09 09:20:59','','Lightweight Folding Manual Wheelchair - Red, 21\'\'','color: Red, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-red-3','','','2021-07-09 09:20:59','2021-07-09 09:20:59','',149,'http://cli.21lab.co/?post_type=product_variation&amp;p=152',3,'product_variation','',0),(153,1,'2021-07-09 09:20:59','2021-07-09 09:20:59','','Lightweight Folding Manual Wheelchair - Red, 33\'\'','color: Red, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-red-3','','','2021-07-09 09:20:59','2021-07-09 09:20:59','',149,'http://cli.21lab.co/?post_type=product_variation&amp;p=153',4,'product_variation','',0),(154,1,'2021-07-09 09:20:59','2021-07-09 09:20:59','','Lightweight Folding Manual Wheelchair - Silver, 21\'\'','color: Silver, size: 21\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-21-silver-3','','','2021-07-09 09:20:59','2021-07-09 09:20:59','',149,'http://cli.21lab.co/?post_type=product_variation&amp;p=154',5,'product_variation','',0),(155,1,'2021-07-09 09:20:59','2021-07-09 09:20:59','','Lightweight Folding Manual Wheelchair - Silver, 33\'\'','color: Silver, size: 33\'\'','publish','closed','closed','','lightweight-folding-manual-wheelchair-33-silver-3','','','2021-07-09 09:20:59','2021-07-09 09:20:59','',149,'http://cli.21lab.co/?post_type=product_variation&amp;p=155',6,'product_variation','',0),(156,1,'2021-07-09 09:39:54','2021-07-09 09:39:54','<div id=\"dpx-product-description_feature_div\">\r\n<div class=\"celwidget\" data-csa-c-id=\"edcb0z-wpl1co-qbtrs-amc68x\" data-cel-widget=\"dpx-product-description_csm_instrumentation_wrapper\">\r\n<div id=\"descriptionAndDetails\" class=\"a-section a-spacing-extra-large\">\r\n<div id=\"productDescription_feature_div\" class=\"celwidget\" data-feature-name=\"productDescription\" data-csa-c-id=\"zf5nig-rj0pyt-b14sja-hajpbp\" data-cel-widget=\"productDescription_feature_div\">\r\n<div>\r\n<div id=\"productDescription_feature_div\" class=\"a-row feature\" data-feature-name=\"productDescription\" data-template-name=\"productDescription\" data-cel-widget=\"productDescription_feature_div\">\r\n<div id=\"productDescription\" class=\"a-section a-spacing-small\">\r\n\r\nProtect your mouth from germs and get fresh breath with Listerine Freshburst Antiseptic Mouthwash. It kills 99.9% of germs that cause bad breath, plaque, and gingivitis for a fresher and cleaner mouth than brushing alone. Clinically shown to reduce 52 percent more plaque and 21 percent more gingivitis than brushing and flossing alone, this antiseptic mouthwash provides a deep clean that cares for your whole mouth.\r\n\r\nListerine Freshburst Mouthwash is a recipient of the ADA Seal of Acceptance for fighting plaque and gingivitis. The great-tasting Freshburst spearmint flavor of this antiseptic mouthwash leaves your mouth feeling clean and fresh. With approximately 12 days in this 500-mL bottle, achieve maximum results by rinsing with this refreshing mouthwash for 30 seconds twice a day, both morning and night, for 24-hour germ protection. *Based on laboratory testing. Data on file. Stock up with this 2-pack of 500 mL bottles of mouthwash.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','Listerine Antiseptic Mouthwash 500ml','With Germ-Killing Oral Care Formula to Fight Bad Breath','publish','open','closed','','listerine-antiseptic-mouthwash-500ml','','','2022-05-17 09:15:15','2022-05-17 09:15:15','',0,'http://cli.21lab.co/?post_type=product&amp;p=156',0,'product','',2),(163,1,'2021-07-09 09:55:47','2021-07-09 09:55:47','Jamieson Vitamin D3 1,000 IU Spray is a delicious and convenient way to get 1,000 IU of vitamin D3 in just one second! It can play a key role in the maintenance of good health while promoting the development of bones and teeth and helping the body effectively absorb calcium.','Vitamin D3 1000 IU Spray','Easy-to-take and absorb Vitamin D3 in droplet form','publish','open','closed','','vitamin-d3-1000-iu-spray-2','','','2021-07-09 09:55:47','2021-07-09 09:55:47','',0,'http://cli.21lab.co/?post_type=product&amp;p=163',0,'product','',0),(164,1,'2021-07-27 03:06:12','2021-07-09 11:51:25',' ','','','publish','closed','closed','','164','','','2021-07-27 03:06:12','2021-07-09 11:51:25','',0,'http://cli.21lab.co/?p=164',16,'nav_menu_item','',0),(165,1,'2021-07-27 03:06:12','2021-07-09 11:51:25',' ','','','publish','closed','closed','','165','','','2021-07-27 03:06:12','2021-07-09 11:51:25','',0,'http://cli.21lab.co/?p=165',15,'nav_menu_item','',0),(166,1,'2021-07-27 03:06:12','2021-07-09 11:51:25',' ','','','publish','closed','closed','','166','','','2021-07-27 03:06:12','2021-07-09 11:51:25','',0,'http://cli.21lab.co/?p=166',14,'nav_menu_item','',0),(167,1,'2021-07-27 03:06:12','2021-07-09 11:51:25','','Shop','','publish','closed','closed','','167','','','2021-07-27 03:06:12','2021-07-09 11:51:25','',0,'http://cli.21lab.co/?p=167',13,'nav_menu_item','',0),(168,1,'2021-07-27 03:06:12','2021-07-09 11:51:25','','Home 1','','publish','closed','closed','','168','','','2021-07-27 03:06:12','2021-07-09 11:51:25','',0,'http://cli.21lab.co/?p=168',2,'nav_menu_item','',0),(170,1,'2021-07-09 11:52:05','2021-07-09 11:52:05','','Blog','','publish','closed','closed','','blog','','','2021-07-09 11:52:05','2021-07-09 11:52:05','',0,'http://cli.21lab.co/?page_id=170',0,'page','',0),(173,1,'2021-07-27 03:06:12','2021-07-09 11:52:45',' ','','','publish','closed','closed','','173','','','2021-07-27 03:06:12','2021-07-09 11:52:45','',0,'http://cli.21lab.co/?p=173',12,'nav_menu_item','',0),(174,1,'2021-07-09 13:39:40','2021-07-09 13:39:40','Pentavite Multivitamin + Iron Kids Powder is a premium formulation containing 18 nutrients. In conjunction with a healthy diet, Pentavite Multivitamin + Iron Kids Powder supports nutritional intake, healthy growth and development, immune system function, cognitive function and maintains energy levels. The formula easily mixes into food and drink and helps support the nutrient intake of fussy eaters.\r\n\r\nWith natural apple &amp; blackcurrant flavours, Multivitamin + Iron Kids Powder is a great tasting formula that kids will love!','Multivitamin + Iron Kids Powder','Multivitamin + Iron Kids Powder is a great tasting formula that kids will love!','publish','open','closed','','multivitamin-iron-kids-powder','','','2021-07-09 13:39:40','2021-07-09 13:39:40','',0,'http://cli.21lab.co/?post_type=product&amp;p=174',0,'product','',0),(177,1,'2021-07-09 13:38:29','2021-07-09 13:38:29','','Multivitamin + Iron Kids Powder - 100mg','Size: 100mg','publish','closed','closed','','multivitamin-iron-kids-powder','','','2021-07-09 13:38:29','2021-07-09 13:38:29','',174,'http://cli.21lab.co/?post_type=product_variation&amp;p=177',3,'product_variation','',0),(178,1,'2021-07-09 13:39:12','2021-07-09 13:39:12','','Multivitamin + Iron Kids Powder - 200mg','Size: 200mg','publish','closed','closed','','multivitamin-iron-kids-powder-2','','','2021-07-09 13:39:12','2021-07-09 13:39:12','',174,'http://cli.21lab.co/?post_type=product_variation&amp;p=178',1,'product_variation','',0),(179,1,'2021-07-09 13:39:28','2021-07-09 13:39:28','','Multivitamin + Iron Kids Powder - 300mg','Size: 300mg','publish','closed','closed','','multivitamin-iron-kids-powder-3','','','2021-07-09 13:39:28','2021-07-09 13:39:28','',174,'http://cli.21lab.co/?post_type=product_variation&amp;p=179',0,'product_variation','',0),(189,1,'2021-07-10 01:10:31','2021-07-10 01:10:31','PURELL hand sanitizer is the #1 brand most trusted and used by hospitals and is proven to kill 99.99% of most common illness-causing germs without damaging the skin.\r\n\r\nGet more germ-fighting power with every bottle with its 2X Sanitizing Strength formula. PURELL Soothing Gel also contains Vitamin E making it perfect for frequent use. The mild formula is free of triclosan, parabens, phthalates, preservatives, and harsh ingredients; so it does not dry out or irritate the skin. Hands feel soft, even after many uses.','Hand Sanitizer Soothing Gel','Kills 99.99% of most illness-causing germs without damaging the skin','publish','open','closed','','hand-sanitizer-soothing-gel','','','2022-05-17 09:15:15','2022-05-17 09:15:15','',0,'http://cli.21lab.co/?post_type=product&amp;p=189',0,'product','',2),(192,1,'2021-07-10 01:25:55','2021-07-10 01:25:55','Intended for <strong>use with a catheter</strong>, the <strong>Brandzig 60ml/cc Catheter Tip Syringe</strong> is the perfect way to <strong>administer liquids into a catheter or feeding tube</strong>. It features a <strong>large 60-ml capacity</strong> (a little over 12 teaspoons) and a <strong>catheter tip</strong>, allowing you to efficiently <strong>administer medication </strong>to <strong>infants, children, patients and pets.</strong>','Catheter Tip Syringe with Cover 5 Pieces','50/Box 20cc disposable syringes 20ml without needle Medint','publish','open','closed','','catheter-tip-syringe-with-cover-5-pieces','','','2021-07-10 01:25:55','2021-07-10 01:25:55','',0,'http://cli.21lab.co/?post_type=product&amp;p=192',0,'product','',0),(196,1,'2021-07-10 01:26:37','2021-07-10 01:26:37','','Catheter Tip Syringe with Cover 5 Pieces - 20ml','Size: 20ml','publish','closed','closed','','catheter-tip-syringe-with-cover-5-pieces-20ml','','','2021-07-10 01:26:37','2021-07-10 01:26:37','',192,'http://cli.21lab.co/?post_type=product_variation&amp;p=196',1,'product_variation','',0),(197,1,'2021-07-10 01:26:37','2021-07-10 01:26:37','','Catheter Tip Syringe with Cover 5 Pieces - 40ml','Size: 40ml','publish','closed','closed','','catheter-tip-syringe-with-cover-5-pieces-40ml','','','2021-07-10 01:26:37','2021-07-10 01:26:37','',192,'http://cli.21lab.co/?post_type=product_variation&amp;p=197',2,'product_variation','',0),(198,1,'2021-07-10 01:26:37','2021-07-10 01:26:37','','Catheter Tip Syringe with Cover 5 Pieces - 60ml','Size: 60ml','publish','closed','closed','','catheter-tip-syringe-with-cover-5-pieces-60ml','','','2021-07-10 01:26:37','2021-07-10 01:26:37','',192,'http://cli.21lab.co/?post_type=product_variation&amp;p=198',3,'product_variation','',0),(206,1,'2021-07-12 09:56:52','2021-07-12 09:56:52','<h6>Here are some helpful links to get you answers faster.</h6>		\n			<a href=\"#contact\" role=\"button\">\n						Get in touch\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pin 3</title><g fill=\"#ffffff\"><path fill=\"#ffffff\" d=\"M32,1C20.694,1,9,9.639,9,24.095C9,39.24,30.383,60.797,31.293,61.707C31.48,61.895,31.735,62,32,62 s0.52-0.105,0.707-0.293C33.617,60.797,55,39.24,55,24.095C55,9.639,43.306,1,32,1z M32,32c-4.418,0-8-3.582-8-8s3.582-8,8-8 s8,3.582,8,8S36.418,32,32,32z\"></path></g></svg>			\n			<h2>Contact Information</h2>		\n		<p><strong>How to Find us</strong></p><p>CiLab Medical Clinic is located at: 2307 Beverley Rd Brooklyn, New York 11226 United States.</p>		\n		<p><strong>Access to Parking</strong></p><p>The CiLab Medical Clinic car park has been relocated to the north of the building.</p>		\n		<p><strong>Opening Hours</strong></p><p>Open 7 days 8:0AM to 8:00PM. Public Holidays 9:00AM to 5:00PM.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h2>Send a Message!</h2>		\n			<ul><li> <a href=\"#\"  >The quickest way to get in contact is to \ntelephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"17\" title=\"Contact form 1\"]		\n															<img width=\"808\" height=\"808\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/glb.jpg\" alt=\"\" loading=\"lazy\" />','Contact','','publish','closed','closed','','contact','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'http://cli.21lab.co/?page_id=206',0,'page','',0),(210,1,'2021-07-29 09:40:01','2021-07-12 09:58:19',' ','','','publish','closed','closed','','210','','','2021-07-29 09:40:01','2021-07-12 09:58:19','',0,'http://cli.21lab.co/?p=210',3,'nav_menu_item','',0),(351,1,'2021-07-15 08:10:54','2021-07-15 08:10:54','<h2>Welcome to CliLab<br>The <strong>Best</strong> Medical <strong>experts</strong> and<br><strong>qualified</strong> staff</h2>		\n		<p>Clilab Medical Clinics in US, operate in 3 cities: New York, Los Angeles and San Francisco. These fully-licensed clinics are staffed by well trained and specialised professionals to ensure quality, comprehensive medical care. With over 40 years of experience in providing healthcare service in US, CliLab offers a one stop service for your medical needs.</p>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>circle arrow down</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#ffffff\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"29\"></circle><line data-cap=\"butt\" x1=\"32\" y1=\"48\" x2=\"32\" y2=\"16\" stroke-linecap=\"butt\" stroke=\"#ffffff\"></line><polyline points=\"43 37 32 48 21 37\" stroke=\"#ffffff\"></polyline></g></svg>			\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<h6>Quick links to the information and resources you need.</h6>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n				0\n							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n															<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" />															\n			<h6>Core Value</h6>		\n			<h2>We seek always to create <br>\n& deliver value for you.</h2>		\n		<p><strong>Our mission</strong></p><p>Our mission is to enhence health and well-being by providing the best total healthcare.</p>		\n		<p><strong>Our Vision</strong></p><p>Trusted partner for health. A healthy community with quality, affordable healthcare for all.</p>		\n		<p><strong>Quality Policy</strong></p><p>We practise high standards through an effective quality management system to assure that our services meet.</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<h3>Why Choose CliLab Medical Clinic</h3>		\n		<p>There are many reasons to choose CliLab as your healthcare provider of choice.<br />Choose from one of the options below to find out more:</p>		\n					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Integrity and Ethics\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>sports fan</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M4,21.378a75.579,75.579,0,0,1,56,0V7.169a78.421,78.421,0,0,0-56,0Z\" stroke=\"#029967\"></path><circle cx=\"32\" cy=\"34\" r=\"6\"></circle><path d=\"M41,62V52.929L59.335,33.29a2.533,2.533,0,0,0,.175-3.249h0a2.534,2.534,0,0,0-3.791-.3L40.873,44.153a3,3,0,0,1-2.09.847H25.217a3,3,0,0,1-2.09-.847L8.281,29.743a2.534,2.534,0,0,0-3.791.3h0a2.533,2.533,0,0,0,.175,3.249L23,52.929V62\"></path></g></svg>						\n										Commitment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>military medal</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polygon points=\"46 23 32 31 18 23 18 3 46 3 46 23\" data-cap=\"butt\" stroke-linecap=\"butt\"></polygon><line x1=\"18\" y1=\"11\" x2=\"46\" y2=\"11\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><line x1=\"24\" y1=\"11\" x2=\"24\" y2=\"26.429\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><line x1=\"40\" y1=\"11\" x2=\"40\" y2=\"26.429\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><polygon points=\"32 34.721 35.013 43.995 44.764 43.995 36.875 49.726 39.889 59 32 53.269 24.111 59 27.125 49.726 19.236 43.995 28.987 43.995 32 34.721\" data-cap=\"butt\" stroke-linecap=\"butt\" stroke=\"#029967\"></polygon></g></svg>						\n										Excellence and Awards\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>c pulse</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\"9 32 17 32 24 16 40 48 47 32 55 32\" stroke=\"#029967\"></polyline><circle cx=\"32\" cy=\"32\" r=\"29\"></circle></g></svg>						\n										Fiscal Soundness\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>diamond</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"3\" y1=\"22\" x2=\"61\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><polyline data-cap=\"butt\" points=\"32,60 42,22 32,5 \" stroke-linecap=\"butt\" stroke=\"#029967\"></polyline><polyline data-cap=\"butt\" points=\"32,5 22,22 32,60 \" stroke-linecap=\"butt\" stroke=\"#029967\"></polyline><line data-cap=\"butt\" x1=\"13\" y1=\"5\" x2=\"22\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"51\" y1=\"5\" x2=\"42\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><polygon points=\"61,22 32,60 3,22 13,5 51,5 \"></polygon></g></svg>						\n										Cultural Competence\n									</li>\n						</ul>\n			<h6>Our team of highly trained doctors</h6>		\n			<h3>“ We are Proud to have a Team of Dedicated Doctors with varying interests and background ”</h3>		\n			<h6>Please read through their profiles to learn more.</h6>		\n			<a href=\"https://cli.21lab.co/about/team/\" role=\"button\">\n						Get To Know Our Doctors\n					</a>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n	        <h4>Dr Odile de Mesmay, GP</h4><p>Gastroenterologist, therapist, Head of the Internal Medicine Clinic…</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n	        <h4>Dr Mohamed Sheikh, GP</h4><p>Director and key member of our team of London based private</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n	        <h4>Dr Ilona Mercieca, GP</h4><p>Member of the Royal College of General Practitioners 2017</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n	        <h4>Mrs. Anna, Dental Nurse</h4><p>Smile Wisdom Academy of Dentistry &amp; Dental Nursing.</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n	        <h4>Dr Hiren Patel, GP</h4><p>Member of the Royal College of General Practitioners 2018</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n														  <li><a href=\"\" ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n	        <h4>Dr Odile de Mesmay, GP</h4><p>Gastroenterologist, therapist, Head of the Internal Medicine Clinic…</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n	        <h4>Dr Mohamed Sheikh, GP</h4><p>Director and key member of our team of London based private</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n	        <h4>Dr Ilona Mercieca, GP</h4><p>Member of the Royal College of General Practitioners 2017</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n	        <h4>Mrs. Anna, Dental Nurse</h4><p>Smile Wisdom Academy of Dentistry &amp; Dental Nursing.</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n	        <h4>Dr Hiren Patel, GP</h4><p>Member of the Royal College of General Practitioners 2018</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n														  <li><a href=\"\" ></a></li>\n							            </ul>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/imgb1-13.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Read More </a>\n						    <a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b14-18.jpeg\" alt=\"How to Talk to Your Child About Coronavirus Disease 2019\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">How to Talk to Your Child About Coronavirus Disease 2019</a></h4>\n							<p>It’s easy to feel overwhelmed by everything you’re hearing about coronavirus disease 2019 (COVID-19) right&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">Read More </a>\n			<h2>Frequently Asked Questions</h2>		\n			<p><a href=\"https://cli.21lab.co/contact/\">Have a question – Scroll through the list of frequently asked questions but if you don’t find your answer, feel free to give us a call or drop us a note. Find out More</a></p>		\n												<a href=\"\">Do I have to re-register if I have services at multiple locations?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">What information will the Patient Services Representative need to schedule an appointment?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">Will you bill my insurance?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">What if I can\'t make my appointment and I need to reschedule?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">If I call with a question for the nurse or doctor, when can I expect a call back?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">How do I get my blood pressure checked?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','About','','publish','closed','closed','','about','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'https://cli.21lab.co/?page_id=351',0,'page','',0),(380,1,'2021-07-15 09:06:00','2021-07-15 09:06:00','<h6>Here are some helpful links to get you answers faster.</h6>		\n			<a href=\"#\" role=\"button\">\n						Find Our More\n					</a>','Title 1','','publish','closed','closed','','title-1','','','2021-07-15 09:06:00','2021-07-15 09:06:00','',0,'https://cli.21lab.co/?elementor_library=title-1',0,'elementor_library','',0),(423,1,'2021-07-29 09:40:01','2021-07-15 09:49:50',' ','','','publish','closed','closed','','423','','','2021-07-29 09:40:01','2021-07-15 09:49:50','',0,'https://cli.21lab.co/?p=423',1,'nav_menu_item','',0),(701,1,'2021-07-19 09:24:25','2021-07-19 09:24:25','<div class=\"rqform\">\r\n<p class=\"form-row\">[text* text-588 placeholder \"Your Name *\"]</p>\r\n<p class=\"form-row\">[tel* tel-706 placeholder \"Contact No *\"]</p>\r\n<p class=\"form-row radio\">\r\n   <label>Your Availability:</label>\r\n   [radio radio-538 use_label_element default:1 \"AM\" \"PM\"]\r\n</p>\r\n<p>[submit \"Request Now\"]</p>\r\n<p>[acceptance acceptance-269 default:on] I have read and accept the Privacy Policy [/acceptance]</p>\r\n</div>\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@cli.21lab.co>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@cli.21lab.co>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Request a Call Back','','publish','closed','closed','','request-a-call-back','','','2021-07-19 09:24:25','2021-07-19 09:24:25','',0,'https://cli.21lab.co/?post_type=wpcf7_contact_form&amp;p=701',0,'wpcf7_contact_form','',0),(859,1,'2021-07-21 02:49:17','2021-07-21 02:49:17','<h6>Services and Programs</h6>		\n			          <h1>The Service Clilab Provide:\n			            VaccinationsEmergencyMedicineand More\n			          </h1>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/about\">\n											Overview Clilab\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team\">\n											Our Doctors\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n											Book an Appointment\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"#\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"#\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>','Services','','publish','closed','closed','','services','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'https://cli.21lab.co/?page_id=859',0,'page','',0),(933,1,'2021-08-01 04:37:37','2021-07-21 09:36:24',' ','','','publish','closed','closed','','933','','','2021-08-01 04:37:37','2021-07-21 09:36:24','',0,'https://cli.21lab.co/?p=933',6,'nav_menu_item','',0),(938,1,'2021-08-01 04:37:37','2021-07-21 09:36:24','','Core value','','publish','closed','closed','','core-value','','','2021-08-01 04:37:37','2021-07-21 09:36:24','',0,'https://cli.21lab.co/?p=938',10,'nav_menu_item','',0),(939,1,'2021-08-01 04:37:37','2021-07-21 09:36:24','','Why choose Us','','publish','closed','closed','','why-choose-us','','','2021-08-01 04:37:37','2021-07-21 09:36:24','',0,'https://cli.21lab.co/?p=939',11,'nav_menu_item','',0),(940,1,'2021-08-01 04:37:37','2021-07-21 09:36:24','','Awards','','publish','closed','closed','','awards','','','2021-08-01 04:37:37','2021-07-21 09:36:24','',0,'https://cli.21lab.co/?p=940',12,'nav_menu_item','',0),(941,1,'2021-08-01 04:37:37','2021-07-21 09:36:24','','FAQs','','publish','closed','closed','','faqs','','','2021-08-01 04:37:37','2021-07-21 09:36:24','',0,'https://cli.21lab.co/?p=941',13,'nav_menu_item','',0),(1015,1,'2021-07-22 03:31:07','2021-07-22 03:31:07','<h5>Skip The Waiting Room!</h5>\n<h3> Register Online Before You Arrive.</h3>\nWe have up to date schedules, contact information, &amp; let you book appointments online.\n\n<a href=\"https://cli.21lab.co/book-an-appointment/\" style=\" \">Book an Appointment</a><a href=\"#request\" style=\" \">Request a Call Back</a>\n<h2>What is Lorem Ipsum?</h2>\n<strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n<h2>Why do we use it?</h2>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\n<h2>Where does it come from?</h2>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.\n\n<a href=\"\">Do I have to re-register if I have services at multiple locations?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"\">What information will the Patient Services Representative need to schedule an appointment?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"\">Will you bill my insurance?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"\">What if I can\'t make my appointment and I need to reschedule?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"\">How do I get my blood pressure checked?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<h6>Here are industry experts who can help you</h6>\n<a href=\"https://cli.21lab.co/about/#team\" role=\"button\">\nGet To Know Our Doctors\n</a>\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Odile de Mesmay, GP</h4>\nGastroenterologist, therapist, Head of the Internal Medicine Clinic…\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Mohamed Sheikh, GP</h4>\nDirector and key member of our team of London based private\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Ilona Mercieca, GP</h4>\nMember of the Royal College of General Practitioners 2017\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Mrs. Anna, Dental Nurse</h4>\nSmile Wisdom Academy of Dentistry &amp; Dental Nursing.\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patelr, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"\"></a></li>\n</ul>\n<h4>Dr Hiren Patelr, GP</h4>\nMember of the Royal College of General Practitioners 2018\n<h6>Need some advice from our experts?</h6>\n<h3>Request a Call Back Today Now!</h3>\nWe will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\">\n<ul>\n 	<li> <a href=\"#\">The quickest way to get in contact is to telephone 03457 30 40 30</a></li>\n</ul>\n[contact-form-7 id=\"701\" title=\"Request a Call Back\"]','Service Single','','publish','closed','closed','','service-single','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',859,'https://cli.21lab.co/?page_id=1015',0,'page','',0),(1073,1,'2021-08-01 04:37:37','2021-07-22 08:25:11','','Home 1','','publish','closed','closed','','home-01','','','2021-08-01 04:37:37','2021-07-22 08:25:11','',0,'https://cli.21lab.co/?p=1073',2,'nav_menu_item','',0),(1074,1,'2021-08-01 04:37:37','2021-07-22 08:25:11','','Demo','','publish','closed','closed','','demo','','','2021-08-01 04:37:37','2021-07-22 08:25:11','',0,'https://cli.21lab.co/?p=1074',1,'nav_menu_item','',0),(1075,1,'2021-08-01 04:37:37','2021-07-22 08:25:11',' ','','','publish','closed','closed','','1075','','','2021-08-01 04:37:37','2021-07-22 08:25:11','',0,'https://cli.21lab.co/?p=1075',14,'nav_menu_item','',0),(1076,1,'2021-08-01 04:37:37','2021-07-22 08:25:11',' ','','','publish','closed','closed','','1076','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',859,'https://cli.21lab.co/?p=1076',17,'nav_menu_item','',0),(1077,1,'2021-08-01 04:37:37','2021-07-22 08:25:11','','Services Page','','publish','closed','closed','','services-page','','','2021-08-01 04:37:37','2021-07-22 08:25:11','',0,'https://cli.21lab.co/?p=1077',16,'nav_menu_item','',0),(1078,1,'2021-07-22 08:24:59','2021-07-22 08:24:59','Register Online Before You Arrive.		\n			<h2>We Look Forward to Welcoming You to the Clinic</h2>		\n		Our complete current fees guide is on display in the reception area.		\n									              <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/mouse.svg\" alt=\"Step 1\">\n									        <h4>Step 1</h4><p>Registration and Book your Appointment.</p>\n									              <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/walk.svg\" alt=\"Step 2\">\n									        <h4>Step 2</h4><p>Determines the appropriate time for you to leave</p>\n									              <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/verified.svg\" alt=\"Step 3\">\n									        <h4>Step 3</h4><p>See your doctor as soon as you arrive.</p>\n			<h6>Doctor Consultation Fee may varies between clinics.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			[ea_bootstrap width=\"100%\" layout_cols=\"2\"]','Book an Appointment','','publish','closed','closed','','book-an-appointment','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'https://cli.21lab.co/?page_id=1078',0,'page','',0),(1080,1,'2021-08-01 04:37:37','2021-07-22 08:27:18',' ','','','publish','closed','closed','','1080','','','2021-08-01 04:37:37','2021-07-22 08:27:18','',0,'https://cli.21lab.co/?p=1080',21,'nav_menu_item','',0),(1081,1,'2021-08-01 04:37:37','2021-07-22 08:27:18','','Pages','','publish','closed','closed','','need-help','','','2021-08-01 04:37:37','2021-07-22 08:27:18','',0,'https://cli.21lab.co/?p=1081',18,'nav_menu_item','',0),(1082,1,'2021-08-01 04:37:37','2021-07-22 08:27:18',' ','','','publish','closed','closed','','1082','','','2021-08-01 04:37:37','2021-07-22 08:27:18','',0,'https://cli.21lab.co/?p=1082',20,'nav_menu_item','',0),(1086,1,'2021-08-01 04:37:37','2021-07-22 08:27:18','','Shop','','publish','closed','closed','','shop','','','2021-08-01 04:37:37','2021-07-22 08:27:18','',0,'https://cli.21lab.co/?p=1086',22,'nav_menu_item','',0),(1253,1,'2022-05-17 13:11:43','2021-07-24 04:03:45',' ','','','publish','closed','closed','','1253','','','2022-05-17 13:11:43','2022-05-17 13:11:43','',0,'https://cli.21lab.co/?p=1253',2,'nav_menu_item','',0),(1254,1,'2022-05-17 13:11:43','2021-07-24 04:03:45','','About Us','','publish','closed','closed','','about-us','','','2022-05-17 13:11:43','2022-05-17 13:11:43','',0,'https://cli.21lab.co/?p=1254',1,'nav_menu_item','',0),(1256,1,'2022-05-17 13:11:43','2021-07-24 04:03:45',' ','','','publish','closed','closed','','1256','','','2022-05-17 13:11:43','2022-05-17 13:11:43','',0,'https://cli.21lab.co/?p=1256',4,'nav_menu_item','',0),(1257,1,'2022-05-17 13:11:43','2021-07-24 04:03:45',' ','','','publish','closed','closed','','1257','','','2022-05-17 13:11:43','2022-05-17 13:11:43','',0,'https://cli.21lab.co/?p=1257',8,'nav_menu_item','',0),(1258,1,'2022-05-17 13:11:43','2021-07-24 04:03:45','','Our Doctors','','publish','closed','closed','','board-of-directors','','','2022-05-17 13:11:43','2022-05-17 13:11:43','',0,'https://cli.21lab.co/?p=1258',3,'nav_menu_item','',0),(1260,1,'2022-05-17 13:11:43','2021-07-24 04:03:45','','Awards & Recognition','','publish','closed','closed','','awards-recognition','','','2022-05-17 13:11:43','2022-05-17 13:11:43','',0,'https://cli.21lab.co/?p=1260',5,'nav_menu_item','',0),(1261,1,'2021-07-27 03:06:12','2021-07-24 04:05:49',' ','','','publish','closed','closed','','1261','','','2021-07-27 03:06:12','2021-07-24 04:05:49','',0,'https://cli.21lab.co/?p=1261',6,'nav_menu_item','',0),(1262,1,'2021-07-27 03:06:12','2021-07-24 04:05:49',' ','','','publish','closed','closed','','1262','','','2021-07-27 03:06:12','2021-07-24 04:05:49','',0,'https://cli.21lab.co/?p=1262',18,'nav_menu_item','',0),(1263,1,'2021-07-27 03:06:12','2021-07-24 04:05:49',' ','','','publish','closed','closed','','1263','','','2021-07-27 03:06:12','2021-07-24 04:05:49','',0,'https://cli.21lab.co/?p=1263',17,'nav_menu_item','',0),(1264,1,'2021-07-27 03:06:12','2021-07-24 04:05:49',' ','','','publish','closed','closed','','1264','','','2021-07-27 03:06:12','2021-07-24 04:05:49','',0,'https://cli.21lab.co/?p=1264',9,'nav_menu_item','',0),(1265,1,'2021-07-27 03:06:12','2021-07-24 04:05:49',' ','','','publish','closed','closed','','1265','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',859,'https://cli.21lab.co/?p=1265',11,'nav_menu_item','',0),(1266,1,'2021-07-24 06:40:48','2021-07-24 06:40:48','<h6>Price List</h6>		\n			<h2>We Look Forward to Welcoming You to the Clinic</h2>		\n		<p>Our complete current fees guide is on display in the reception area.</p><p><br /><a href=\"#\">Download Price List (PDF)</a></p>		\n			<h6>Doctor Consultation Fee may varies between clinics.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n		              <h3>Dental Prices<a href=\"#\"  >Need Help? </a></h3>\n		              <ul><li>Examination $250</li><li>Examination Plus Scale & Polish from $150</li><li>New Patient Consultation 30min $250</li><li>Hygienist $44.50</li><li>Fillings $70 - $250</li><li>Root Canal $300 - $450</li><li>Crowns & Veneers $500 - $750</li><li>Re-Cement Crown $800 - $1150</li></ul>\n		              <h3>Dental Prices<a href=\"#\"  >Need Help? </a></h3>\n		              <ul><li>Examination $250</li><li>Examination Plus Scale & Polish from $150</li><li>New Patient Consultation 30min $250</li><li>Hygienist $44.50</li><li>Fillings $70 - $250</li><li>Root Canal $300 - $450</li><li>Crowns & Veneers $500 - $750</li><li>Re-Cement Crown $800 - $1150</li></ul>\n		              <h3>Dental Prices<a href=\"#\"  >Need Help? </a></h3>\n		              <ul><li>Examination $250</li><li>Examination Plus Scale & Polish from $150</li><li>New Patient Consultation 30min $250</li><li>Hygienist $44.50</li><li>Fillings $70 - $250</li><li>Root Canal $300 - $450</li><li>Crowns & Veneers $500 - $750</li><li>Re-Cement Crown $800 - $1150</li></ul>\n			<h2>Frequently Asked Questions</h2>		\n			<p><a href=\"https://cli.21lab.co/contact/\">Have a question – Scroll through the list of frequently asked questions but if you don’t find your answer, feel free to give us a call or drop us a note. Find out More</a></p>		\n												<a href=\"\">Do I have to re-register if I have services at multiple locations?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">What information will the Patient Services Representative need to schedule an appointment?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">Will you bill my insurance?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">What if I can\'t make my appointment and I need to reschedule?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">If I call with a question for the nurse or doctor, when can I expect a call back?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">How do I get my blood pressure checked?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Prices','','publish','closed','closed','','prices','','','2021-07-24 06:40:48','2021-07-24 06:40:48','',0,'https://cli.21lab.co/?page_id=1266',0,'page','',0),(1293,1,'2021-07-24 15:01:56','2021-07-24 15:01:56','<h5>The 1980’s</h5><h3>NHE Increases &amp; COBRA</h3><p>By 1980, NHE accounted for 8.9 percent of GDP, an even larger leap than the decade prior. Under the Reagan Administration (1981-1989), regulations loosened across the board, and privatization of healthcare became increasingly common.</p><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/military-medal.svg\" alt=\"NHE Increases &amp; COBRA\"><h5>The 1990’s</h5><h3>HIPAA &amp; Medicaid Expansion</h3><p>By 1990, NHE accounted for 12.1 percent of GDP — the largest increase thus far in the history of healthcare. Like others before him, the 42nd President of the United States, Bill Clinton (1993-2001), saw that this rapid increase in healthcare expenses would be damaging to the average American and attempted to take action.</p><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/diamond.svg\" alt=\"HIPAA &amp; Medicaid Expansion\"><h5>The Early 2000’s</h5><h3>Extending Coverage</h3><p>The history of healthcare slowed down at that point, as the national healthcare debate was tabled while the U.S. focused on the increased threat of terrorism and the second Iraq War. It wasn’t until election campaign mumblings began in 2006 and 2007 that insurance worked its way back into the national discussion.</p><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/sports-fan.svg\" alt=\"Extending Coverage\"><h5>2008 to 2016</h5><h3>The Affordable Care Act</h3><p>When Barack Obama (2009-2017) was elected the 44th President of the United States in 2008, he wasted no time getting to work on healthcare reform. He worked closely with Senator Ted Kennedy to create a new healthcare law that mirrored the one Kennedy and Nixon worked on in the &#039;70s.</p><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/medication.svg\" alt=\"The Affordable Care Act\"><h5>2017</h5><h3> The Trump Presidency </h3><p>Since Donald Trump was sworn in as the 45th President of the United States on January 20, 2017, many have questioned what would happen with our healthcare system — specifically, what would happen to the ACA, since Donald Trump ran on a platform of “repealing and replacing” the bill.</p><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/brain.svg\" alt=\" The Trump Presidency \"><h5>Present</h5><h3>The Future of Healthcare</h3><p>Hungry to notch a win on healthcare prior to the 2020 election, the Trump administration continues to push ahead on initiatives designed to reign-in healthcare costs. </p><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/hands-heart.svg\" alt=\"The Future of Healthcare\">','History','','publish','closed','closed','','history','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',351,'https://cli.21lab.co/?page_id=1293',0,'page','',0),(1301,1,'2021-07-25 00:45:43','2021-07-25 00:45:43','<h6>PLEASE READ THROUGH THEIR PROFILES TO LEARN MORE.</h6>\n<a href=\"#contact\" role=\"button\">\nGet in touch\n</a>\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Odile de Mesmay, GP</h4>\nGASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC…\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Mrs. Anna, Dental Nurse</h4>\nSmile Wisdom Academy of Dentistry &amp; Dental Nursing.\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Mohamed Sheikh, GP</h4>\nDirector and key member of our team of London based private\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"\"></a></li>\n</ul>\n<h4>Dr Hiren Patel, GP</h4>\nMember of the Royal College of General Practitioners 2018\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Mohamed Sheikh, GP</h4>\nDirector and key member of our team of London based private\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"\"></a></li>\n</ul>\n<h4>Dr Hiren Patel, GP</h4>\nMember of the Royal College of General Practitioners 2018\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Ilona Mercieca, GP</h4>\nMember of the Royal College of General Practitioners 2017\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Odile de Mesmay, GP</h4>\nGASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC…\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Ilona Mercieca, GP</h4>\nMember of the Royal College of General Practitioners 2017\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Odile de Mesmay, GP</h4>\nGASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC…\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Mrs. Anna, Dental Nurse</h4>\nSmile Wisdom Academy of Dentistry &amp; Dental Nursing.\n\n<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Mohamed Sheikh, GP</h4>\nDirector and key member of our team of London based private','Team','','publish','closed','closed','','team','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',351,'https://cli.21lab.co/?page_id=1301',0,'page','',0),(1338,1,'2021-08-01 04:37:37','2021-07-25 02:37:21',' ','','','publish','closed','closed','','1338','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',351,'https://cli.21lab.co/?p=1338',8,'nav_menu_item','',0),(1339,1,'2021-08-01 04:37:37','2021-07-25 02:37:21','','Our Doctor','','publish','closed','closed','','our-doctor-2','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',351,'https://cli.21lab.co/?p=1339',9,'nav_menu_item','',0),(1340,1,'2021-08-01 04:37:37','2021-07-25 02:37:21','','Overview','','publish','closed','closed','','overview-2','','','2021-08-01 04:37:37','2021-07-25 02:37:21','',0,'https://cli.21lab.co/?p=1340',7,'nav_menu_item','',0),(1368,1,'2021-07-26 02:20:41','2021-07-26 02:20:41','[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n															<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Read More </a>\n						    <a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b14-18.jpeg\" alt=\"How to Talk to Your Child About Coronavirus Disease 2019\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">How to Talk to Your Child About Coronavirus Disease 2019</a></h4>\n							<p>It’s easy to feel overwhelmed by everything you’re hearing about coronavirus disease 2019 (COVID-19) right&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">Read More </a>','Home 3','','publish','closed','closed','','home-3','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'https://cli.21lab.co/?page_id=1368',0,'page','',0),(1376,1,'2021-08-01 04:37:37','2021-07-26 02:26:57',' ','','','publish','closed','closed','','1376','','','2021-08-01 04:37:37','2021-07-26 02:26:57','',0,'https://cli.21lab.co/?p=1376',4,'nav_menu_item','',0),(1377,1,'2021-08-01 04:37:37','2021-07-26 02:26:57',' ','','','publish','closed','closed','','1377','','','2021-08-01 04:37:37','2021-07-26 02:26:57','',0,'https://cli.21lab.co/?p=1377',3,'nav_menu_item','',0),(1378,1,'2021-07-26 02:53:28','2021-07-26 02:53:28','<ul>\n							<li>\n										Free Delivery on all Orders Over $30\n									</li>\n								<li>\n										30 Days Money Back Guarantee\n									</li>\n								<li>\n										Call us on a Toll Free Phone Number\n									</li>\n						</ul>\n			WooCommerce		\n			<h3>Flat 25% OFF Medicine Order</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis		\n			<a href=\"#\" role=\"button\">\n						Shop Now\n					</a>\n			<figure><a href=\"#\"><img width=\"390\" height=\"150\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/imagebox3-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Save 50% - N95 Face Mask</a></h3><p>Shop Now</p>		\n			<figure><a href=\"#\"><img width=\"390\" height=\"150\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/imagebox2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Save 35% - Functional Foods </a></h3><p>Shop Now</p>		\n			<figure><a href=\"#\"><img width=\"390\" height=\"150\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/imagebox-9.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Save 25% - The Medical Kit</a></h3><p>Shop Now</p>		\n			<h2>Featured Products</h2>		\n		[products limit=\"5\" visibility=\"featured\" ]		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h2>Sale Products</h2>		\n		[sale_products]		\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/imgb1-13.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h2>Recent Products</h2>		\n		[products limit=\"10\"]		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h2>From The Blog</h2>		\n						    <a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b14-18.jpeg\" alt=\"How to Talk to Your Child About Coronavirus Disease 2019\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">How to Talk to Your Child About Coronavirus Disease 2019</a></h4>\n							<p>It’s easy to feel overwhelmed by everything you’re hearing about coronavirus disease 2019 (COVID-19) right&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">READ MORE </a>','Home 4','','publish','closed','closed','','home-4','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'https://cli.21lab.co/?page_id=1378',0,'page','',0),(1381,1,'2021-08-01 04:37:37','2021-07-26 02:54:02','','Home 4 - Shop','','publish','closed','closed','','home-4-shop','','','2021-08-01 04:37:37','2021-07-26 02:54:02','',0,'https://cli.21lab.co/?p=1381',5,'nav_menu_item','',0),(1546,1,'2021-08-01 04:37:37','2021-07-27 03:04:36',' ','','','publish','closed','closed','','1546','','','2021-08-01 04:37:37','2021-07-27 03:04:36','',0,'https://cli.21lab.co/?p=1546',15,'nav_menu_item','',0),(1547,1,'2021-07-27 03:06:12','2021-07-27 03:06:12',' ','','','publish','closed','closed','','1547','','','2021-07-27 03:06:12','2021-07-27 03:06:12','',0,'https://cli.21lab.co/?p=1547',1,'nav_menu_item','',0),(1548,1,'2021-07-27 03:06:12','2021-07-27 03:06:12',' ','','','publish','closed','closed','','1548','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',351,'https://cli.21lab.co/?p=1548',7,'nav_menu_item','',0),(1549,1,'2021-07-27 03:06:12','2021-07-27 03:06:12',' ','','','publish','closed','closed','','1549','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',351,'https://cli.21lab.co/?p=1549',8,'nav_menu_item','',0),(1550,1,'2021-07-27 03:06:12','2021-07-27 03:06:12',' ','','','publish','closed','closed','','1550','','','2021-07-27 03:06:12','2021-07-27 03:06:12','',0,'https://cli.21lab.co/?p=1550',3,'nav_menu_item','',0),(1551,1,'2021-07-27 03:06:12','2021-07-27 03:06:12',' ','','','publish','closed','closed','','1551','','','2021-07-27 03:06:12','2021-07-27 03:06:12','',0,'https://cli.21lab.co/?p=1551',4,'nav_menu_item','',0),(1552,1,'2021-07-27 03:06:12','2021-07-27 03:06:12',' ','','','publish','closed','closed','','1552','','','2021-07-27 03:06:12','2021-07-27 03:06:12','',0,'https://cli.21lab.co/?p=1552',5,'nav_menu_item','',0),(1553,1,'2021-07-27 03:06:12','2021-07-27 03:06:12',' ','','','publish','closed','closed','','1553','','','2021-07-27 03:06:12','2021-07-27 03:06:12','',0,'https://cli.21lab.co/?p=1553',10,'nav_menu_item','',0),(1640,1,'2021-07-29 09:40:01','2021-07-29 09:34:52',' ','','','publish','closed','closed','','1640','','','2021-07-29 09:40:01','2021-07-29 09:34:52','',0,'https://cli.21lab.co/?p=1640',2,'nav_menu_item','',0),(1641,1,'2021-07-29 09:40:01','2021-07-29 09:34:52',' ','','','publish','closed','closed','','1641','','','2021-07-29 09:40:01','2021-07-29 09:34:52','',0,'https://cli.21lab.co/?p=1641',4,'nav_menu_item','',0),(1642,1,'2021-07-08 08:22:36','2021-07-08 08:22:36','','The Clilab Medical Shop','','publish','closed','closed','','shop-2','','','2021-07-08 08:22:36','2021-07-08 08:22:36','',0,'http://cli.21lab.co/shop/',0,'page','',0),(1643,1,'2021-08-01 04:37:37','2021-07-29 09:38:38',' ','','','publish','closed','closed','','1643','','','2021-08-01 04:37:37','2021-07-29 09:38:38','',0,'https://cli.21lab.co/?p=1643',19,'nav_menu_item','',0),(1729,1,'2021-08-01 04:35:59','2021-08-01 04:35:59','<ul>\n    <li>\n        <p>iconlab-weight-gain</p>\n    </li>\n    <li>\n        <p>iconlab-liquid-soap-container</p>\n    </li>\n    <li>\n        <p>iconlab-research</p>\n    </li>\n    <li>\n        <p>iconlab-biology</p>\n    </li>\n    <li>\n        <p>iconlab-medicine</p>\n    </li>\n    <li>\n        <p>iconlab-pharmacy</p>\n    </li>\n    <li>\n        <p>iconlab-botany</p>\n    </li>\n    <li>\n        <p>iconlab-microbiology</p>\n    </li>\n    <li>\n        <p>iconlab-biochemistry</p>\n    </li>\n    <li>\n        <p>iconlab-embryo</p>\n    </li>\n    <li>\n        <p>iconlab-pregnancy-test</p>\n    </li>\n    <li>\n        <p>iconlab-ovum-sperm</p>\n    </li>\n    <li>\n        <p>iconlab-sperm</p>\n    </li>\n    <li>\n        <p>iconlab-condom</p>\n    </li>\n    <li>\n        <p>iconlab-medical-mask</p>\n    </li>\n    <li>\n        <p>iconlab-dont-touch-mouth</p>\n    </li>\n    <li>\n        <p>iconlab-dont-touch-eyes</p>\n    </li>\n    <li>\n        <p>iconlab-coughing</p>\n    </li>\n    <li>\n        <p>iconlab-lungs-infection</p>\n    </li>\n    <li>\n        <p>iconlab-medication</p>\n    </li>\n    <li>\n        <p>iconlab-call-doctor</p>\n    </li>\n    <li>\n        <p>iconlab-doctor</p>\n    </li>\n    <li>\n        <p>iconlab-gathering-restrictions</p>\n    </li>\n    <li>\n        <p>iconlab-runny-nose</p>\n    </li>\n    <li>\n        <p>iconlab-sneeze</p>\n    </li>\n    <li>\n        <p>iconlab-wash-hands</p>\n    </li>\n    <li>\n        <p>iconlab-infrared-thermometer</p>\n    </li>\n    <li>\n        <p>iconlab-disinfectant</p>\n    </li>\n    <li>\n        <p>iconlab-hospital-bed</p>\n    </li>\n    <li>\n        <p>iconlab-thermometer</p>\n    </li>\n    <li>\n        <p>iconlab-virus</p>\n    </li>\n    <li>\n        <p>iconlab-social-distancing</p>\n    </li>\n    <li>\n        <p>iconlab-no-contact</p>\n    </li>\n    <li>\n        <p>iconlab-stay-home</p>\n    </li>\n    <li>\n        <p>iconlab-potion</p>\n    </li>\n    <li>\n        <p>iconlab-smoking</p>\n    </li>\n    <li>\n        <p>iconlab-no-smoking</p>\n    </li>\n    <li>\n        <p>iconlab-walking-support</p>\n    </li>\n    <li>\n        <p>iconlab-bedroom</p>\n    </li>\n    <li>\n        <p>iconlab-watch-heart</p>\n    </li>\n    <li>\n        <p>iconlab-phone-heart</p>\n    </li>\n    <li>\n        <p>iconlab-weight-loss</p>\n    </li>\n    <li>\n        <p>iconlab-measurement</p>\n    </li>\n    <li>\n        <p>iconlab-stretching</p>\n    </li>\n    <li>\n        <p>iconlab-diet-food</p>\n    </li>\n    <li>\n        <p>iconlab-treadmill</p>\n    </li>\n    <li>\n        <p>iconlab-mortar</p>\n    </li>\n    <li>\n        <p>iconlab-diet-plan</p>\n    </li>\n    <li>\n        <p>iconlab-food-scale</p>\n    </li>\n    <li>\n        <p>iconlab-nutrition</p>\n    </li>\n    <li>\n        <p>iconlab-diet</p>\n    </li>\n    <li>\n        <p>iconlab-female</p>\n    </li>\n    <li>\n        <p>iconlab-woman-man</p>\n    </li>\n    <li>\n        <p>iconlab-woman-21</p>\n    </li>\n    <li>\n        <p>iconlab-wheelchair-2</p>\n    </li>\n    <li>\n        <p>iconlab-weight-scale</p>\n    </li>\n    <li>\n        <p>iconlab-weed</p>\n    </li>\n    <li>\n        <p>iconlab-tooth</p>\n    </li>\n    <li>\n        <p>iconlab-temperature</p>\n    </li>\n    <li>\n        <p>iconlab-temperature-2</p>\n    </li>\n    <li>\n        <p>iconlab-syringe</p>\n    </li>\n    <li>\n        <p>iconlab-steps</p>\n    </li>\n    <li>\n        <p>iconlab-male</p>\n    </li>\n    <li>\n        <p>iconlab-pulse</p>\n    </li>\n    <li>\n        <p>iconlab-watch-heartbeat</p>\n    </li>\n    <li>\n        <p>iconlab-pulse-sleep</p>\n    </li>\n    <li>\n        <p>iconlab-phone-heartbeat</p>\n    </li>\n    <li>\n        <p>iconlab-pulse-chart</p>\n    </li>\n    <li>\n        <p>iconlab-cure</p>\n    </li>\n    <li>\n        <p>iconlab-pill-bottle</p>\n    </li>\n    <li>\n        <p>iconlab-pill-43</p>\n    </li>\n    <li>\n        <p>iconlab-pill-42</p>\n    </li>\n    <li>\n        <p>iconlab-patch</p>\n    </li>\n    <li>\n        <p>iconlab-patch-34</p>\n    </li>\n    <li>\n        <p>iconlab-nurse</p>\n    </li>\n    <li>\n        <p>iconlab-medical-clipboard</p>\n    </li>\n    <li>\n        <p>iconlab-molecule</p>\n    </li>\n    <li>\n        <p>iconlab-molecule-40</p>\n    </li>\n    <li>\n        <p>iconlab-molecule-39</p>\n    </li>\n    <li>\n        <p>iconlab-microscope</p>\n    </li>\n    <li>\n        <p>iconlab-man-20</p>\n    </li>\n    <li>\n        <p>iconlab-lungs</p>\n    </li>\n    <li>\n        <p>iconlab-chemistry</p>\n    </li>\n    <li>\n        <p>iconlab-intestine</p>\n    </li>\n    <li>\n        <p>iconlab-humidity-52</p>\n    </li>\n    <li>\n        <p>iconlab-humidity-26</p>\n    </li>\n    <li>\n        <p>iconlab-hospital-34</p>\n    </li>\n    <li>\n        <p>iconlab-hospital-33</p>\n    </li>\n    <li>\n        <p>iconlab-hospital-32</p>\n    </li>\n    <li>\n        <p>iconlab-height</p>\n    </li>\n    <li>\n        <p>iconlab-heartbeat</p>\n    </li>\n    <li>\n        <p>iconlab-flask</p>\n    </li>\n    <li>\n        <p>iconlab-flask-2</p>\n    </li>\n    <li>\n        <p>iconlab-flame</p>\n    </li>\n    <li>\n        <p>iconlab-heart-2</p>\n    </li>\n    <li>\n        <p>iconlab-drop</p>\n    </li>\n    <li>\n        <p>iconlab-stethoscope</p>\n    </li>\n    <li>\n        <p>iconlab-dna-38</p>\n    </li>\n    <li>\n        <p>iconlab-dna-27</p>\n    </li>\n    <li>\n        <p>iconlab-brain</p>\n    </li>\n    <li>\n        <p>iconlab-bag-50</p>\n    </li>\n    <li>\n        <p>iconlab-bag-49</p>\n    </li>\n    <li>\n        <p>iconlab-atom</p>\n    </li>\n    <li>\n        <p>iconlab-apple-2</p>\n    </li>\n    <li>\n        <p>iconlab-c-pulse</p>\n    </li>\n    <li>\n        <p>iconlab-s-pulse</p>\n    </li>\n    <li>\n        <p>iconlab-ambulance</p>\n    </li>\n    <li>\n        <p>iconlab-ctrl-down</p>\n    </li>\n    <li>\n        <p>iconlab-arrow-right</p>\n    </li>\n    <li>\n        <p>iconlab-arrow-left</p>\n    </li>\n    <li>\n        <p>iconlab-arrow-down</p>\n    </li>\n    <li>\n        <p>iconlab-arrow-up</p>\n    </li>\n    <li>\n        <p>iconlab-ctrl-left</p>\n    </li>\n    <li>\n        <p>iconlab-ctrl-right</p>\n    </li>\n    <li>\n        <p>iconlab-ctrl-up</p>\n    </li>\n    <li>\n        <p>iconlab-upload-file</p>\n    </li>\n    <li>\n        <p>iconlab-launch</p>\n    </li>\n    <li>\n        <p>iconlab-delete-key</p>\n    </li>\n    <li>\n        <p>iconlab-refresh</p>\n    </li>\n    <li>\n        <p>iconlab-log-in</p>\n    </li>\n    <li>\n        <p>iconlab-logout</p>\n    </li>\n    <li>\n        <p>iconlab-zoom</p>\n    </li>\n    <li>\n        <p>iconlab-attachment</p>\n    </li>\n    <li>\n        <p>iconlab-settings-gear</p>\n    </li>\n    <li>\n        <p>iconlab-file-edit</p>\n    </li>\n    <li>\n        <p>iconlab-pen-2</p>\n    </li>\n    <li>\n        <p>iconlab-d-edit</p>\n    </li>\n    <li>\n        <p>iconlab-comment</p>\n    </li>\n    <li>\n        <p>iconlab-comment-1</p>\n    </li>\n    <li>\n        <p>iconlab-s-edit</p>\n    </li>\n    <li>\n        <p>iconlab-pen</p>\n    </li>\n    <li>\n        <p>iconlab-settings-gear-1</p>\n    </li>\n    <li>\n        <p>iconlab-d-check</p>\n    </li>\n    <li>\n        <p>iconlab-n-check</p>\n    </li>\n    <li>\n        <p>iconlab-verified</p>\n    </li>\n    <li>\n        <p>iconlab-shopping-cart</p>\n    </li>\n    <li>\n        <p>iconlab-add-to-cart</p>\n    </li>\n    <li>\n        <p>iconlab-e-remove</p>\n    </li>\n    <li>\n        <p>iconlab-e-add</p>\n    </li>\n    <li>\n        <p>iconlab-radio-btn</p>\n    </li>\n    <li>\n        <p>iconlab-radio-btn-checked</p>\n    </li>\n    <li>\n        <p>iconlab-stack</p>\n    </li>\n    <li>\n        <p>iconlab-c-check</p>\n    </li>\n    <li>\n        <p>iconlab-b-comment</p>\n    </li>\n    <li>\n        <p>iconlab-alarm</p>\n    </li>\n    <li>\n        <p>iconlab-star-rate</p>\n    </li>\n    <li>\n        <p>iconlab-heart</p>\n    </li>\n    <li>\n        <p>iconlab-f-chat</p>\n    </li>\n    <li>\n        <p>iconlab-phone-call</p>\n    </li>\n    <li>\n        <p>iconlab-eye</p>\n    </li>\n    <li>\n        <p>iconlab-email</p>\n    </li>\n    <li>\n        <p>iconlab-c-remove</p>\n    </li>\n    <li>\n        <p>iconlab-verified-1</p>\n    </li>\n    <li>\n        <p>iconlab-star-rate-1</p>\n    </li>\n    <li>\n        <p>iconlab-phone-call-1</p>\n    </li>\n    <li>\n        <p>iconlab-email-1</p>\n    </li>\n    <li>\n        <p>iconlab-eye-1</p>\n    </li>\n    <li>\n        <p>iconlab-c-check-1</p>\n    </li>\n    <li>\n        <p>iconlab-f-chat-1</p>\n    </li>\n    <li>\n        <p>iconlab-c-remove-1</p>\n    </li>\n    <li>\n        <p>iconlab-alarm-1</p>\n    </li>\n    <li>\n        <p>iconlab-heart-1</p>\n    </li>\n    <li>\n        <p>iconlab-like</p>\n    </li>\n    <li>\n        <p>iconlab-square-pin</p>\n    </li>\n    <li>\n        <p>iconlab-square-pin-1</p>\n    </li>\n    <li>\n        <p>iconlab-edit-color</p>\n    </li>\n    <li>\n        <p>iconlab-arrow-sm-down</p>\n    </li>\n    <li>\n        <p>iconlab-arrow-sm-left</p>\n    </li>\n    <li>\n        <p>iconlab-arrow-sm-right</p>\n    </li>\n    <li>\n        <p>iconlab-caret-sm-up</p>\n    </li>\n    <li>\n        <p>iconlab-cycle</p>\n    </li>\n    <li>\n        <p>iconlab-loop</p>\n    </li>\n    <li>\n        <p>iconlab-img-stack</p>\n    </li>\n    <li>\n        <p>iconlab-dashboard</p>\n    </li>\n    <li>\n        <p>iconlab-box-2</p>\n    </li>\n    <li>\n        <p>iconlab-download-file</p>\n    </li>\n    <li>\n        <p>iconlab-a-edit</p>\n    </li>\n</ul>','Nucleo Icons Font','','publish','closed','closed','','nucleo-icons-font','','','2021-08-01 04:35:59','2021-08-01 04:35:59','',0,'https://cli.21lab.co/?page_id=1729',0,'page','',0),(1735,1,'2021-08-01 04:37:37','2021-08-01 04:37:37',' ','','','publish','closed','closed','','1735','','','2021-08-01 04:37:37','2021-08-01 04:37:37','',0,'https://cli.21lab.co/?p=1735',23,'nav_menu_item','',0),(1736,1,'2021-08-17 09:48:39','2021-08-17 09:48:39','','slider02.jpg','','inherit','closed','closed','','slider02-jpg','','','2021-08-17 09:48:39','2021-08-17 09:48:39','',0,'https://cli.21lab.co/wp-content/uploads/revslider/home/slider02.jpg',0,'attachment','image/jpeg',0),(1737,1,'2021-08-17 09:48:39','2021-08-17 09:48:39','','slider01.jpg','','inherit','closed','closed','','slider01-jpg','','','2021-08-17 09:48:39','2021-08-17 09:48:39','',0,'https://cli.21lab.co/wp-content/uploads/revslider/home/slider01.jpg',0,'attachment','image/jpeg',0),(1738,1,'2022-05-17 09:11:45','2022-05-17 09:11:45','','One Click Demo Import - log_file_2022-05-17__09-11-45','','inherit','open','closed','','one-click-demo-import-log_file_2022-05-17__09-11-45','','','2022-05-17 09:11:45','2022-05-17 09:11:45','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/log_file_2022-05-17__09-11-45.txt',0,'attachment','text/plain',0),(1739,1,'2021-08-17 09:48:39','2021-08-17 09:48:39','','slider03.jpg','','inherit','closed','closed','','slider03-jpg','','','2021-08-17 09:48:39','2021-08-17 09:48:39','',0,'https://cli.21lab.co/wp-content/uploads/revslider/home/slider03.jpg',0,'attachment','image/jpeg',0),(1740,1,'2021-08-17 09:48:39','2021-08-17 09:48:39','','bg3.jpg','','inherit','closed','closed','','bg3-jpg','','','2021-08-17 09:48:39','2021-08-17 09:48:39','',0,'https://cli.21lab.co/wp-content/uploads/revslider/homepage-3/bg3.jpg',0,'attachment','image/jpeg',0),(1741,1,'2021-08-17 09:48:39','2021-08-17 09:48:39','','favico.png','','inherit','closed','closed','','favico-png','','','2021-08-17 09:48:39','2021-08-17 09:48:39','',0,'https://cli.21lab.co/wp-content/uploads/revslider/homepage-3/favico.png',0,'attachment','image/png',0),(1742,1,'2021-08-17 09:55:51','2021-08-17 09:55:51','.ctaBox h2 {\n	font-family:\"Fraunces\";\n}\n.home:not(.off-canvas-left-active) .header-transparent {\n	background: rgba(255,255,255,.8);\n	box-shadow: 0 2px 4px rgba(42,42,42,.1)\n}\n#site .elementor-widget-icon-list.elementor-icon-list--layout-inline.elementor-align-center ul li .elementor-icon-list-icon svg {\nwidth: 64px;\nheight: 64px;\nmargin: 0;}','src','','publish','closed','closed','','src','','','2021-08-17 09:55:51','2021-08-17 09:55:51','',0,'https://cli.21lab.co/2021/08/17/src/',0,'custom_css','',0),(1750,1,'2021-08-17 10:12:27','2021-08-17 10:12:27','','cheque-3','','inherit','open','closed','','cheque-3','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/cheque-3.svg',0,'attachment','image/svg+xml',0),(1751,1,'2021-08-17 10:12:27','2021-08-17 10:12:27','','event-create-1','','inherit','open','closed','','event-create-1','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/event-create-1.svg',0,'attachment','image/svg+xml',0),(1753,1,'2021-08-17 10:12:28','2021-08-17 10:12:28','','stethoscope','','inherit','open','closed','','stethoscope','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/stethoscope.svg',0,'attachment','image/svg+xml',0),(1759,1,'2021-08-17 10:15:09','2021-08-17 10:15:09','','square-pin-1','','inherit','open','closed','','square-pin-1','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/square-pin-1.svg',0,'attachment','image/svg+xml',0),(1761,1,'2021-08-17 10:17:01','2021-08-17 10:17:01','','Rectangle-Copy-28-13','','inherit','open','closed','','rectangle-copy-28-13','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg',0,'attachment','image/jpeg',0),(1762,1,'2021-08-17 10:17:14','2021-08-17 10:17:14','','Rectangle-Copy-35-13','','inherit','open','closed','','rectangle-copy-35-13','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg',0,'attachment','image/jpeg',0),(1763,1,'2021-08-17 10:17:25','2021-08-17 10:17:25','','Rectangle-Copy-36-13','','inherit','open','closed','','rectangle-copy-36-13','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg',0,'attachment','image/jpeg',0),(1764,1,'2021-08-17 10:18:24','2021-08-17 10:18:24','','Artboard-11','','inherit','open','closed','','artboard-11','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png',0,'attachment','image/png',0),(1765,1,'2021-08-17 10:18:25','2021-08-17 10:18:25','','Artboard-Copy-11-11','','inherit','open','closed','','artboard-copy-11-11','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png',0,'attachment','image/png',0),(1766,1,'2021-08-17 10:18:25','2021-08-17 10:18:25','','Artboard-Copy-12-11','','inherit','open','closed','','artboard-copy-12-11','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-12-11.png',0,'attachment','image/png',0),(1767,1,'2021-08-17 10:18:26','2021-08-17 10:18:26','','Artboard-Copy-13-11','','inherit','open','closed','','artboard-copy-13-11','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-13-11.png',0,'attachment','image/png',0),(1768,1,'2021-08-17 10:18:27','2021-08-17 10:18:27','','Artboard-Copy-14-12','','inherit','open','closed','','artboard-copy-14-12','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-14-12.png',0,'attachment','image/png',0),(1769,1,'2021-08-17 10:20:02','2021-08-17 10:20:02','','imgb1-13','','inherit','open','closed','','imgb1-13','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/imgb1-13.jpeg',0,'attachment','image/jpeg',0),(1770,1,'2021-08-17 10:29:51','2021-08-17 10:29:51','','brain','','inherit','open','closed','','brain','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/brain.svg',0,'attachment','image/svg+xml',0),(1771,1,'2021-08-17 10:29:51','2021-08-17 10:29:51','','c-pulse','','inherit','open','closed','','c-pulse','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/c-pulse.svg',0,'attachment','image/svg+xml',0),(1772,1,'2021-08-17 10:29:52','2021-08-17 10:29:52','','child','','inherit','open','closed','','child','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/child.svg',0,'attachment','image/svg+xml',0),(1773,1,'2021-08-17 10:29:52','2021-08-17 10:29:52','','circle-arrow-down','','inherit','open','closed','','circle-arrow-down','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/circle-arrow-down.svg',0,'attachment','image/svg+xml',0),(1774,1,'2021-08-17 10:29:53','2021-08-17 10:29:53','','diamond','','inherit','open','closed','','diamond','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/diamond.svg',0,'attachment','image/svg+xml',0),(1775,1,'2021-08-17 10:29:53','2021-08-17 10:29:53','','dont-touch-eyes','','inherit','open','closed','','dont-touch-eyes','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/dont-touch-eyes.svg',0,'attachment','image/svg+xml',0),(1776,1,'2021-08-17 10:29:54','2021-08-17 10:29:54','','event-create','','inherit','open','closed','','event-create','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/event-create.svg',0,'attachment','image/svg+xml',0),(1777,1,'2021-08-17 10:29:54','2021-08-17 10:29:54','','hands-heart','','inherit','open','closed','','hands-heart','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/hands-heart.svg',0,'attachment','image/svg+xml',0),(1778,1,'2021-08-17 10:29:55','2021-08-17 10:29:55','','hospital-34','','inherit','open','closed','','hospital-34','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/hospital-34.svg',0,'attachment','image/svg+xml',0),(1779,1,'2021-08-17 10:29:55','2021-08-17 10:29:55','','lungs-infection','','inherit','open','closed','','lungs-infection','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/lungs-infection.svg',0,'attachment','image/svg+xml',0),(1780,1,'2021-08-17 10:29:56','2021-08-17 10:29:56','','medication','','inherit','open','closed','','medication','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/medication.svg',0,'attachment','image/svg+xml',0),(1781,1,'2021-08-17 10:29:56','2021-08-17 10:29:56','','menu','','inherit','open','closed','','menu','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/menu.svg',0,'attachment','image/svg+xml',0),(1782,1,'2021-08-17 10:29:56','2021-08-17 10:29:56','','military-medal','','inherit','open','closed','','military-medal','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/military-medal.svg',0,'attachment','image/svg+xml',0),(1783,1,'2021-08-17 10:29:57','2021-08-17 10:29:57','','sports-fan','','inherit','open','closed','','sports-fan','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/sports-fan.svg',0,'attachment','image/svg+xml',0),(1784,1,'2021-08-17 10:29:57','2021-08-17 10:29:57','','syringe','','inherit','open','closed','','syringe','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/syringe.svg',0,'attachment','image/svg+xml',0),(1785,1,'2021-08-17 10:29:58','2021-08-17 10:29:58','','tooth','','inherit','open','closed','','tooth','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/tooth.svg',0,'attachment','image/svg+xml',0),(1786,1,'2021-08-17 10:29:58','2021-08-17 10:29:58','','verified','','inherit','open','closed','','verified','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/verified.svg',0,'attachment','image/svg+xml',0),(1787,1,'2021-08-17 10:29:59','2021-08-17 10:29:59','','virtual-assistant-2-1','','inherit','open','closed','','virtual-assistant-2-1','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/virtual-assistant-2-1.svg',0,'attachment','image/svg+xml',0),(1788,1,'2021-08-17 10:29:59','2021-08-17 10:29:59','','walk','','inherit','open','closed','','walk','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/walk.svg',0,'attachment','image/svg+xml',0),(1789,1,'2021-08-17 10:30:00','2021-08-17 10:30:00','','wheelchair-2','','inherit','open','closed','','wheelchair-2','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/wheelchair-2.svg',0,'attachment','image/svg+xml',0),(1790,1,'2021-08-17 10:33:59','2021-08-17 10:33:59','','pregnant-woman','','inherit','open','closed','','pregnant-woman','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/pregnant-woman.svg',0,'attachment','image/svg+xml',0),(1791,1,'2021-08-17 10:34:54','2021-08-17 10:34:54','','image-from-rawpixel-id-3229594-png-11','','inherit','open','closed','','image-from-rawpixel-id-3229594-png-11','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg',0,'attachment','image/jpeg',0),(1792,1,'2021-08-17 10:35:41','2021-08-17 10:35:41','','telephone','','inherit','open','closed','','telephone','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/telephone.svg',0,'attachment','image/svg+xml',0),(1794,1,'2021-08-17 10:36:38','2021-08-17 10:36:38','','face','','inherit','open','closed','','face','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/face.png',0,'attachment','image/png',0),(1800,1,'2021-08-17 10:42:39','2021-08-17 10:42:39','','image-from-rawpixel-id-3228523-png-1-14','','inherit','open','closed','','image-from-rawpixel-id-3228523-png-1-14','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png',0,'attachment','image/png',0),(1804,1,'2021-08-17 10:45:46','2021-08-17 10:45:46','','b2-18','','inherit','open','closed','','b2-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b2-18.jpeg',0,'attachment','image/jpeg',0),(1806,1,'2021-08-17 10:45:47','2021-08-17 10:45:47','','b4-18','','inherit','open','closed','','b4-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b4-18.jpeg',0,'attachment','image/jpeg',0),(1807,1,'2021-08-17 10:45:49','2021-08-17 10:45:49','','b5-18','','inherit','open','closed','','b5-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b5-18.jpeg',0,'attachment','image/jpeg',0),(1808,1,'2021-08-17 10:45:50','2021-08-17 10:45:50','','b6-18','','inherit','open','closed','','b6-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b6-18.jpeg',0,'attachment','image/jpeg',0),(1809,1,'2021-08-17 10:45:52','2021-08-17 10:45:52','','b8-19','','inherit','open','closed','','b8-19','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b8-19.jpeg',0,'attachment','image/jpeg',0),(1810,1,'2021-08-17 10:45:52','2021-08-17 10:45:52','','b11-18','','inherit','open','closed','','b11-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b11-18.jpeg',0,'attachment','image/jpeg',0),(1811,1,'2021-08-17 10:45:53','2021-08-17 10:45:53','','b12-18','','inherit','open','closed','','b12-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b12-18.jpeg',0,'attachment','image/jpeg',0),(1812,1,'2021-08-17 10:45:54','2021-08-17 10:45:54','','b13-18','','inherit','open','closed','','b13-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b13-18.jpeg',0,'attachment','image/jpeg',0),(1813,1,'2021-08-17 10:45:55','2021-08-17 10:45:55','','b14-18','','inherit','open','closed','','b14-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b14-18.jpeg',0,'attachment','image/jpeg',0),(1814,1,'2021-08-17 10:45:56','2021-08-17 10:45:56','','b16-18','','inherit','open','closed','','b16-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',70,'https://cli.21lab.co/wp-content/uploads/2021/07/b16-18.jpeg',0,'attachment','image/jpeg',0),(1827,1,'2021-08-17 11:02:32','2021-08-17 11:02:32','','Artboard-9-12','','inherit','open','closed','','artboard-9-12','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-9-12.jpeg',0,'attachment','image/jpeg',0),(1831,1,'2021-08-17 11:03:04','2021-08-17 11:03:04','','bg-sidebar','','inherit','open','closed','','bg-sidebar','','','2021-08-17 11:03:04','2021-08-17 11:03:04','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/bg-sidebar.jpg',0,'attachment','image/jpeg',0),(1833,1,'2021-08-17 11:10:02','2021-08-17 11:10:02','','pin-3-1','','inherit','open','closed','','pin-3-1','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',206,'https://cli.21lab.co/wp-content/uploads/2021/08/pin-3-1.svg',0,'attachment','image/svg+xml',0),(1834,1,'2021-08-17 11:10:29','2021-08-17 11:10:29','','glb','','inherit','open','closed','','glb','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',206,'https://cli.21lab.co/wp-content/uploads/2021/08/glb.jpg',0,'attachment','image/jpeg',0),(1838,1,'2021-08-17 11:11:19','2021-08-17 11:11:19','','bg-map','','inherit','open','closed','','bg-map','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',206,'https://cli.21lab.co/wp-content/uploads/2021/08/bg-map.png',0,'attachment','image/png',0),(1842,1,'2021-08-17 11:14:25','2021-08-17 11:14:25','','bg-1','','inherit','open','closed','','bg-1','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1947,'https://cli.21lab.co/wp-content/uploads/2021/08/bg-1.jpg',0,'attachment','image/jpeg',0),(1846,1,'2021-08-17 13:44:07','2021-08-17 13:44:07','','Bitmap','','inherit','open','closed','','bitmap','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',28,'https://cli.21lab.co/wp-content/uploads/2021/08/Bitmap.jpg',0,'attachment','image/jpeg',0),(1853,1,'2021-08-17 13:48:38','2021-08-17 13:48:38','','banner1-10','','inherit','open','closed','','banner1-10','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1368,'https://cli.21lab.co/wp-content/uploads/2021/08/banner1-10.jpeg',0,'attachment','image/jpeg',0),(1854,1,'2021-08-17 13:48:40','2021-08-17 13:48:40','','banner2-8','','inherit','open','closed','','banner2-8','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1368,'https://cli.21lab.co/wp-content/uploads/2021/08/banner2-8.jpeg',0,'attachment','image/jpeg',0),(1855,1,'2021-08-17 13:49:49','2021-08-17 13:49:49','','a2-13','Best Use of Technology In Medical Tourism','inherit','open','closed','','a2-13','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1368,'https://cli.21lab.co/wp-content/uploads/2021/08/a2-13.jpeg',0,'attachment','image/jpeg',0),(1856,1,'2021-08-17 13:49:50','2021-08-17 13:49:50','','a1-13','Excellence In Customer Service','inherit','open','closed','','a1-13','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1368,'https://cli.21lab.co/wp-content/uploads/2021/08/a1-13.jpeg',0,'attachment','image/jpeg',0),(1857,1,'2021-08-17 13:49:51','2021-08-17 13:49:51','','a4-13','Excellence In Customer Service','inherit','open','closed','','a4-13','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1368,'https://cli.21lab.co/wp-content/uploads/2021/08/a4-13.jpeg',0,'attachment','image/jpeg',0),(1858,1,'2021-08-17 13:49:53','2021-08-17 13:49:53','','a3-13','International  Hospital of The Year','inherit','open','closed','','a3-13','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1368,'https://cli.21lab.co/wp-content/uploads/2021/08/a3-13.jpeg',0,'attachment','image/jpeg',0),(1866,1,'2021-08-17 13:53:26','2021-08-17 13:53:26','','bg-shop','','inherit','open','closed','','bg-shop','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1378,'https://cli.21lab.co/wp-content/uploads/2021/08/bg-shop.jpg',0,'attachment','image/jpeg',0),(1867,1,'2021-08-17 13:53:56','2021-08-17 13:53:56','','imagebox-9','','inherit','open','closed','','imagebox-9','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1378,'https://cli.21lab.co/wp-content/uploads/2021/08/imagebox-9.jpeg',0,'attachment','image/jpeg',0),(1868,1,'2021-08-17 13:53:57','2021-08-17 13:53:57','','imagebox2-8','','inherit','open','closed','','imagebox2-8','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1378,'https://cli.21lab.co/wp-content/uploads/2021/08/imagebox2-8.jpeg',0,'attachment','image/jpeg',0),(1869,1,'2021-08-17 13:53:59','2021-08-17 13:53:59','','imagebox3-8','','inherit','open','closed','','imagebox3-8','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1378,'https://cli.21lab.co/wp-content/uploads/2021/08/imagebox3-8.jpeg',0,'attachment','image/jpeg',0),(1873,1,'2021-08-17 13:58:08','2021-08-17 13:58:08','','bg_ab-scaled-1','','inherit','open','closed','','bg_ab-scaled-1','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',351,'https://cli.21lab.co/wp-content/uploads/2021/08/bg_ab-scaled-1.jpg',0,'attachment','image/jpeg',0),(1877,1,'2021-08-17 14:03:32','2021-08-17 14:03:32','','bg2','','inherit','open','closed','','bg2','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1293,'https://cli.21lab.co/wp-content/uploads/2021/08/bg2.jpg',0,'attachment','image/jpeg',0),(1891,1,'2021-08-17 14:15:10','2021-08-17 14:15:10','','Artboard-1-4-12','','inherit','open','closed','','artboard-1-4-12','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1015,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-1-4-12.jpeg',0,'attachment','image/jpeg',0),(1892,1,'2021-08-17 14:15:12','2021-08-17 14:15:12','','Artboard-Copy-1-12','','inherit','open','closed','','artboard-copy-1-12','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1015,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-1-12.jpeg',0,'attachment','image/jpeg',0),(1900,1,'2021-08-17 14:20:01','2021-08-17 14:20:01','','mouse','','inherit','open','closed','','mouse','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',1078,'https://cli.21lab.co/wp-content/uploads/2021/08/mouse.svg',0,'attachment','image/svg+xml',0),(1904,1,'2021-08-17 14:30:41','2021-08-17 14:30:41','','Artboard-Copy-2-18','','inherit','open','closed','','artboard-copy-2-18','','','2021-08-17 14:30:41','2021-08-17 14:30:41','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-2-18.jpeg',0,'attachment','image/jpeg',0),(1905,1,'2021-08-17 14:30:41','2021-08-17 14:30:41','','Artboard-Copy-3-18','','inherit','open','closed','','artboard-copy-3-18','','','2021-08-17 14:30:41','2021-08-17 14:30:41','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-3-18.jpeg',0,'attachment','image/jpeg',0),(1906,1,'2021-08-17 14:30:42','2021-08-17 14:30:42','','Artboard-Copy-6-18','','inherit','open','closed','','artboard-copy-6-18','','','2021-08-17 14:30:42','2021-08-17 14:30:42','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-6-18.jpeg',0,'attachment','image/jpeg',0),(1907,1,'2021-08-17 14:30:42','2021-08-17 14:30:42','','Artboard-Copy-25','','inherit','open','closed','','artboard-copy-25','','','2021-08-17 14:30:42','2021-08-17 14:30:42','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-25.jpeg',0,'attachment','image/jpeg',0),(1908,1,'2021-08-17 14:30:43','2021-08-17 14:30:43','','Artboard-Copy-72-18','','inherit','open','closed','','artboard-copy-72-18','','','2021-08-17 14:30:43','2021-08-17 14:30:43','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-72-18.jpeg',0,'attachment','image/jpeg',0),(1909,1,'2021-08-17 14:30:43','2021-08-17 14:30:43','','favico','','inherit','open','closed','','favico','','','2021-08-17 14:30:43','2021-08-17 14:30:43','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/favico.png',0,'attachment','image/png',0),(1910,1,'2021-08-17 14:30:44','2021-08-17 14:30:44','','tg1-18','','inherit','open','closed','','tg1-18','','','2021-08-17 14:30:44','2021-08-17 14:30:44','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/tg1-18.jpeg',0,'attachment','image/jpeg',0),(1911,1,'2021-08-17 14:32:35','2021-08-17 14:32:35','','Artboard-Copy-5-18','','inherit','open','closed','','artboard-copy-5-18','','','2021-08-17 14:32:35','2021-08-17 14:32:35','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-5-18.jpeg',0,'attachment','image/jpeg',0),(1912,1,'2021-08-17 14:37:38','2021-08-17 14:37:38','','Artboard-3-18','','inherit','open','closed','','artboard-3-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',138,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-3-18.jpeg',0,'attachment','image/jpeg',0),(1913,1,'2021-08-17 14:37:40','2021-08-17 14:37:40','','Artboard-Copy-8-2-1-18','','inherit','open','closed','','artboard-copy-8-2-1-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',138,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-2-1-18.jpeg',0,'attachment','image/jpeg',0),(1914,1,'2021-08-17 14:38:46','2021-08-17 14:38:46','','Artboard-8-18','','inherit','open','closed','','artboard-8-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',192,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-8-18.jpeg',0,'attachment','image/jpeg',0),(1915,1,'2021-08-17 14:38:47','2021-08-17 14:38:47','','Artboard-Copy-8-7-18','','inherit','open','closed','','artboard-copy-8-7-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',192,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-7-18.jpeg',0,'attachment','image/jpeg',0),(1916,1,'2021-08-17 14:39:48','2021-08-17 14:39:48','','Artboard-Copy-8-1-21','','inherit','open','closed','','artboard-copy-8-1-21','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',105,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-1-21.jpeg',0,'attachment','image/jpeg',0),(1917,1,'2021-08-17 14:39:49','2021-08-17 14:39:49','','Artboard-Copy-10-19','','inherit','open','closed','','artboard-copy-10-19','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',105,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-10-19.jpeg',0,'attachment','image/jpeg',0),(1918,1,'2021-08-17 14:39:50','2021-08-17 14:39:50','','Artboard-Copy-9-21','','inherit','open','closed','','artboard-copy-9-21','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',105,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-9-21.jpeg',0,'attachment','image/jpeg',0),(1919,1,'2021-08-17 14:40:49','2021-08-17 14:40:49','','Artboard-7-18','','inherit','open','closed','','artboard-7-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',189,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-7-18.jpeg',0,'attachment','image/jpeg',0),(1920,1,'2021-08-17 14:40:50','2021-08-17 14:40:50','','Artboard-Copy-8-6-18','','inherit','open','closed','','artboard-copy-8-6-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',189,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-6-18.jpeg',0,'attachment','image/jpeg',0),(1922,1,'2021-08-17 14:41:48','2021-08-17 14:41:48','','Artboard-2-18','','inherit','open','closed','','artboard-2-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',134,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-2-18.jpeg',0,'attachment','image/jpeg',0),(1923,1,'2021-08-17 14:41:49','2021-08-17 14:41:49','','Artboard-Copy-8-1-1-18','','inherit','open','closed','','artboard-copy-8-1-1-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',134,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-1-1-18.jpeg',0,'attachment','image/jpeg',0),(1924,1,'2021-08-17 14:41:50','2021-08-17 14:41:50','','Artboard-Copy-9-1-1-18','','inherit','open','closed','','artboard-copy-9-1-1-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',134,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-9-1-1-18.jpeg',0,'attachment','image/jpeg',0),(1925,1,'2021-08-17 14:42:40','2021-08-17 14:42:40','','Artboard-1-21','','inherit','open','closed','','artboard-1-21','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',109,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-1-21.jpeg',0,'attachment','image/jpeg',0),(1926,1,'2021-08-17 14:42:41','2021-08-17 14:42:41','','Artboard-1-1-18','','inherit','open','closed','','artboard-1-1-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',109,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-1-1-18.jpeg',0,'attachment','image/jpeg',0),(1927,1,'2021-08-17 14:44:23','2021-08-17 14:44:23','','Artboard-Copy-8-2-19','','inherit','open','closed','','artboard-copy-8-2-19','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',112,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-2-19.jpeg',0,'attachment','image/jpeg',0),(1928,1,'2021-08-17 14:44:24','2021-08-17 14:44:24','','Artboard-Copy-10-1-18','','inherit','open','closed','','artboard-copy-10-1-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',112,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-10-1-18.jpeg',0,'attachment','image/jpeg',0),(1929,1,'2021-08-17 14:44:25','2021-08-17 14:44:25','','Artboard-Copy-9-1-19','','inherit','open','closed','','artboard-copy-9-1-19','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',112,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-9-1-19.jpeg',0,'attachment','image/jpeg',0),(1930,1,'2021-08-17 14:48:07','2021-08-17 14:48:07','','Artboard-5-18','','inherit','open','closed','','artboard-5-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',156,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-5-18.jpeg',0,'attachment','image/jpeg',0),(1931,1,'2021-08-17 14:48:08','2021-08-17 14:48:08','','Artboard-Copy-9-3-18','','inherit','open','closed','','artboard-copy-9-3-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',156,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-9-3-18.jpeg',0,'attachment','image/jpeg',0),(1932,1,'2021-08-17 14:48:09','2021-08-17 14:48:09','','Artboard-Copy-8-4-18','','inherit','open','closed','','artboard-copy-8-4-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',156,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-4-18.jpeg',0,'attachment','image/jpeg',0),(1933,1,'2021-08-17 14:49:02','2021-08-17 14:49:02','','Artboard-1-3-18','','inherit','open','closed','','artboard-1-3-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',174,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-1-3-18.jpeg',0,'attachment','image/jpeg',0),(1934,1,'2021-08-17 14:49:02','2021-08-17 14:49:02','','Artboard-Copy-8-1-3-18','','inherit','open','closed','','artboard-copy-8-1-3-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',174,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-1-3-18.jpeg',0,'attachment','image/jpeg',0),(1935,1,'2021-08-17 14:49:58','2021-08-17 14:49:58','','Artboard-26','','inherit','open','closed','','artboard-26','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',79,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-26.jpeg',0,'attachment','image/jpeg',0),(1936,1,'2021-08-17 14:50:00','2021-08-17 14:50:00','','Artboard-Copy-8-25','','inherit','open','closed','','artboard-copy-8-25','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',79,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-25.jpeg',0,'attachment','image/jpeg',0),(1937,1,'2021-08-17 14:51:06','2021-08-17 14:51:06','','Artboard-1-2-18','','inherit','open','closed','','artboard-1-2-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',143,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-1-2-18.jpeg',0,'attachment','image/jpeg',0),(1938,1,'2021-08-17 14:51:07','2021-08-17 14:51:07','','Artboard-Copy-9-2-18','','inherit','open','closed','','artboard-copy-9-2-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',143,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-9-2-18.jpeg',0,'attachment','image/jpeg',0),(1939,1,'2021-08-17 14:51:08','2021-08-17 14:51:08','','Artboard-Copy-8-1-2-18','','inherit','open','closed','','artboard-copy-8-1-2-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',143,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-1-2-18.jpeg',0,'attachment','image/jpeg',0),(1940,1,'2021-08-17 14:51:51','2021-08-17 14:51:51','','Artboard-6-18','','inherit','open','closed','','artboard-6-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',163,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-6-18.jpeg',0,'attachment','image/jpeg',0),(1941,1,'2021-08-17 14:51:51','2021-08-17 14:51:51','','Artboard-Copy-8-5-18','','inherit','open','closed','','artboard-copy-8-5-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',163,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-5-18.jpeg',0,'attachment','image/jpeg',0),(1942,1,'2021-08-17 14:54:01','2021-08-17 14:54:01','','Artboard-4-18','','inherit','open','closed','','artboard-4-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',102,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-4-18.jpeg',0,'attachment','image/jpeg',0),(1943,1,'2021-08-17 14:54:53','2021-08-17 14:54:53','','Artboard-Copy-8-3-18','','inherit','open','closed','','artboard-copy-8-3-18','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',102,'https://cli.21lab.co/wp-content/uploads/2021/07/Artboard-Copy-8-3-18.jpeg',0,'attachment','image/jpeg',0),(1945,1,'2021-08-17 14:57:34','2021-08-17 14:57:34','https://cli.21lab.co/wp-content/uploads/2021/08/cropped-favico.png','cropped-favico.png','','inherit','open','closed','','cropped-favico-png','','','2021-08-17 14:57:34','2021-08-17 14:57:34','',0,'https://cli.21lab.co/wp-content/uploads/2021/08/cropped-favico.png',0,'attachment','image/png',0),(1946,1,'2021-08-17 09:45:02','2021-08-17 09:45:02','','Default Kit','','publish','closed','closed','','default-kit-2','','','2021-08-17 09:45:02','2021-08-17 09:45:02','',0,'https://cli.21lab.co/?p=9',0,'elementor_library','',0),(1947,1,'2021-07-06 11:38:19','2021-07-06 11:38:19','[rev_slider alias=\"home\" slidertitle=\"Homepage\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h6>Our team of highly trained doctors</h6>		\n			<h3>“ No matter what your concern, your first stop is one of our accessible, expert health professionals. ”</h3>		\n			<h6>Please read through their profiles to learn more.</h6>		\n			<a href=\"https://cli.21lab.co/about/team/\" role=\"button\">\n						Get To Know Our Doctors\n					</a>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n	        <h4>Dr Odile de Mesmay, GP</h4><p>Gastroenterologist, therapist, Head of the Internal Medicine Clinic…</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n	        <h4>Dr Mohamed Sheikh, GP</h4><p>Director and key member of our team of London based private</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n	        <h4>Dr Ilona Mercieca, GP</h4><p>Member of the Royal College of General Practitioners 2017</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n	        <h4>Mrs. Anna, Dental Nurse</h4><p>Smile Wisdom Academy of Dentistry &amp; Dental Nursing.</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n	        <h4>Dr Hiren Patel, GP</h4><p>Member of the Royal College of General Practitioners 2018</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n														  <li><a href=\"\" ></a></li>\n							            </ul>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/imgb1-13.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n															<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Here are some helpful links to get you answers faster.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n															<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>','Home','','publish','closed','open','','home','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'https://cli.21lab.co/?page_id=2',0,'page','',0),(1948,1,'2021-08-17 09:41:47','2021-08-17 09:41:47','<!-- 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://cli.21lab.co.</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 we send your data</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','','','2021-08-17 09:41:47','2021-08-17 09:41:47','',0,'https://cli.21lab.co/?page_id=3',0,'page','',0),(1949,1,'2021-08-17 15:01:18','2021-08-17 15:01:18','[rev_slider alias=\"home\" slidertitle=\"Homepage\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h6>Our team of highly trained doctors</h6>		\n			<h3>“ No matter what your concern, your first stop is one of our accessible, expert health professionals. ”</h3>		\n			<h6>Please read through their profiles to learn more.</h6>		\n			<a href=\"https://cli.21lab.co/about/team/\" role=\"button\">\n						Get To Know Our Doctors\n					</a>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n	        <h4>Dr Odile de Mesmay, GP</h4><p>Gastroenterologist, therapist, Head of the Internal Medicine Clinic…</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n	        <h4>Dr Mohamed Sheikh, GP</h4><p>Director and key member of our team of London based private</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n	        <h4>Dr Ilona Mercieca, GP</h4><p>Member of the Royal College of General Practitioners 2017</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n	        <h4>Mrs. Anna, Dental Nurse</h4><p>Smile Wisdom Academy of Dentistry &amp; Dental Nursing.</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n	        <h4>Dr Hiren Patel, GP</h4><p>Member of the Royal College of General Practitioners 2018</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n														  <li><a href=\"\" ></a></li>\n							            </ul>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/imgb1-13.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n															<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Here are some helpful links to get you answers faster.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n															<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>','Homepage','','publish','closed','closed','','homepage','','','2022-05-17 09:15:14','2022-05-17 09:15:14','',0,'https://cli.21lab.co/?page_id=1946',0,'page','',0),(1950,1,'2021-08-17 09:45:02','2021-08-17 09:45:02','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@cli.21lab.co>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@cli.21lab.co>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1-2','','','2021-08-17 09:45:02','2021-08-17 09:45:02','',0,'https://cli.21lab.co/?post_type=wpcf7_contact_form&amp;p=8',0,'wpcf7_contact_form','',0),(1951,1,'2021-07-06 11:38:19','2021-07-06 11:38:19','[rev_slider alias=\"home\" slidertitle=\"Homepage\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h6>Our team of highly trained doctors</h6>		\n			<h3>“ No matter what your concern, your first stop is one of our accessible, expert health professionals. ”</h3>		\n			<h6>Please read through their profiles to learn more.</h6>		\n			<a href=\"https://cli.21lab.co/about/team/\" role=\"button\">\n						Get To Know Our Doctors\n					</a>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n	        <h4>Dr Odile de Mesmay, GP</h4><p>Gastroenterologist, therapist, Head of the Internal Medicine Clinic…</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n	        <h4>Dr Mohamed Sheikh, GP</h4><p>Director and key member of our team of London based private</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n	        <h4>Dr Ilona Mercieca, GP</h4><p>Member of the Royal College of General Practitioners 2017</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n	        <h4>Mrs. Anna, Dental Nurse</h4><p>Smile Wisdom Academy of Dentistry &amp; Dental Nursing.</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n	        <h4>Dr Hiren Patel, GP</h4><p>Member of the Royal College of General Practitioners 2018</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n														  <li><a href=\"\" ></a></li>\n							            </ul>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/imgb1-13.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n															<img width=\"582\" height=\"654\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Here are some helpful links to get you answers faster.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n															<img width=\"575\" height=\"728\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>','Home','','inherit','closed','closed','','1947-revision-v1','','','2021-07-06 11:38:19','2021-07-06 11:38:19','',1947,'https://demoweblinks.in/dental/?p=1951',0,'revision','',0),(1952,1,'2021-07-24 03:50:59','2021-07-24 03:50:59','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n				0\n							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n															<img width=\"582\" height=\"654\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2021-07-24 03:50:59','2021-07-24 03:50:59','',28,'https://demoweblinks.in/dental/?p=1952',0,'revision','',0),(1953,1,'2021-07-12 09:56:52','2021-07-12 09:56:52','<h6>Here are some helpful links to get you answers faster.</h6>		\n			<a href=\"#contact\" role=\"button\">\n						Get in touch\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pin 3</title><g fill=\"#ffffff\"><path fill=\"#ffffff\" d=\"M32,1C20.694,1,9,9.639,9,24.095C9,39.24,30.383,60.797,31.293,61.707C31.48,61.895,31.735,62,32,62 s0.52-0.105,0.707-0.293C33.617,60.797,55,39.24,55,24.095C55,9.639,43.306,1,32,1z M32,32c-4.418,0-8-3.582-8-8s3.582-8,8-8 s8,3.582,8,8S36.418,32,32,32z\"></path></g></svg>			\n			<h2>Contact Information</h2>		\n		<p><strong>How to Find us</strong></p><p>CiLab Medical Clinic is located at: 2307 Beverley Rd Brooklyn, New York 11226 United States.</p>		\n		<p><strong>Access to Parking</strong></p><p>The CiLab Medical Clinic car park has been relocated to the north of the building.</p>		\n		<p><strong>Opening Hours</strong></p><p>Open 7 days 8:0AM to 8:00PM. Public Holidays 9:00AM to 5:00PM.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h2>Send a Message!</h2>		\n			<ul><li> <a href=\"#\"  >The quickest way to get in contact is to \ntelephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"17\" title=\"Contact form 1\"]		\n															<img width=\"808\" height=\"808\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/glb.jpg\" alt=\"\" loading=\"lazy\" />','Contact','','inherit','closed','closed','','206-revision-v1','','','2021-07-12 09:56:52','2021-07-12 09:56:52','',206,'https://demoweblinks.in/dental/?p=1953',0,'revision','',0),(1954,1,'2021-07-15 08:10:54','2021-07-15 08:10:54','<h2>Welcome to CliLab<br>The <strong>Best</strong> Medical <strong>experts</strong> and<br><strong>qualified</strong> staff</h2>		\n		<p>Clilab Medical Clinics in US, operate in 3 cities: New York, Los Angeles and San Francisco. These fully-licensed clinics are staffed by well trained and specialised professionals to ensure quality, comprehensive medical care. With over 40 years of experience in providing healthcare service in US, CliLab offers a one stop service for your medical needs.</p>		\n			<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>circle arrow down</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#ffffff\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"29\"></circle><line data-cap=\"butt\" x1=\"32\" y1=\"48\" x2=\"32\" y2=\"16\" stroke-linecap=\"butt\" stroke=\"#ffffff\"></line><polyline points=\"43 37 32 48 21 37\" stroke=\"#ffffff\"></polyline></g></svg>			\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<h6>Quick links to the information and resources you need.</h6>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n				0\n							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n															<img width=\"575\" height=\"728\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" />															\n			<h6>Core Value</h6>		\n			<h2>We seek always to create <br>\n& deliver value for you.</h2>		\n		<p><strong>Our mission</strong></p><p>Our mission is to enhence health and well-being by providing the best total healthcare.</p>		\n		<p><strong>Our Vision</strong></p><p>Trusted partner for health. A healthy community with quality, affordable healthcare for all.</p>		\n		<p><strong>Quality Policy</strong></p><p>We practise high standards through an effective quality management system to assure that our services meet.</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<h3>Why Choose CliLab Medical Clinic</h3>		\n		<p>There are many reasons to choose CliLab as your healthcare provider of choice.<br />Choose from one of the options below to find out more:</p>		\n					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Integrity and Ethics\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>sports fan</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M4,21.378a75.579,75.579,0,0,1,56,0V7.169a78.421,78.421,0,0,0-56,0Z\" stroke=\"#029967\"></path><circle cx=\"32\" cy=\"34\" r=\"6\"></circle><path d=\"M41,62V52.929L59.335,33.29a2.533,2.533,0,0,0,.175-3.249h0a2.534,2.534,0,0,0-3.791-.3L40.873,44.153a3,3,0,0,1-2.09.847H25.217a3,3,0,0,1-2.09-.847L8.281,29.743a2.534,2.534,0,0,0-3.791.3h0a2.533,2.533,0,0,0,.175,3.249L23,52.929V62\"></path></g></svg>						\n										Commitment\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>military medal</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polygon points=\"46 23 32 31 18 23 18 3 46 3 46 23\" data-cap=\"butt\" stroke-linecap=\"butt\"></polygon><line x1=\"18\" y1=\"11\" x2=\"46\" y2=\"11\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><line x1=\"24\" y1=\"11\" x2=\"24\" y2=\"26.429\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><line x1=\"40\" y1=\"11\" x2=\"40\" y2=\"26.429\" data-cap=\"butt\" stroke-linecap=\"butt\"></line><polygon points=\"32 34.721 35.013 43.995 44.764 43.995 36.875 49.726 39.889 59 32 53.269 24.111 59 27.125 49.726 19.236 43.995 28.987 43.995 32 34.721\" data-cap=\"butt\" stroke-linecap=\"butt\" stroke=\"#029967\"></polygon></g></svg>						\n										Excellence and Awards\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>c pulse</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\"9 32 17 32 24 16 40 48 47 32 55 32\" stroke=\"#029967\"></polyline><circle cx=\"32\" cy=\"32\" r=\"29\"></circle></g></svg>						\n										Fiscal Soundness\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>diamond</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"3\" y1=\"22\" x2=\"61\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><polyline data-cap=\"butt\" points=\"32,60 42,22 32,5 \" stroke-linecap=\"butt\" stroke=\"#029967\"></polyline><polyline data-cap=\"butt\" points=\"32,5 22,22 32,60 \" stroke-linecap=\"butt\" stroke=\"#029967\"></polyline><line data-cap=\"butt\" x1=\"13\" y1=\"5\" x2=\"22\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"51\" y1=\"5\" x2=\"42\" y2=\"22\" stroke-linecap=\"butt\" stroke=\"#029967\"></line><polygon points=\"61,22 32,60 3,22 13,5 51,5 \"></polygon></g></svg>						\n										Cultural Competence\n									</li>\n						</ul>\n			<h6>Our team of highly trained doctors</h6>		\n			<h3>“ We are Proud to have a Team of Dedicated Doctors with varying interests and background ”</h3>		\n			<h6>Please read through their profiles to learn more.</h6>		\n			<a href=\"https://cli.21lab.co/about/team/\" role=\"button\">\n						Get To Know Our Doctors\n					</a>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n	        <h4>Dr Odile de Mesmay, GP</h4><p>Gastroenterologist, therapist, Head of the Internal Medicine Clinic…</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n	        <h4>Dr Mohamed Sheikh, GP</h4><p>Director and key member of our team of London based private</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n	        <h4>Dr Ilona Mercieca, GP</h4><p>Member of the Royal College of General Practitioners 2017</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n	        <h4>Mrs. Anna, Dental Nurse</h4><p>Smile Wisdom Academy of Dentistry &amp; Dental Nursing.</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n	        <h4>Dr Hiren Patel, GP</h4><p>Member of the Royal College of General Practitioners 2018</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n														  <li><a href=\"\" ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n	        <h4>Dr Odile de Mesmay, GP</h4><p>Gastroenterologist, therapist, Head of the Internal Medicine Clinic…</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n	        <h4>Dr Mohamed Sheikh, GP</h4><p>Director and key member of our team of London based private</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n	        <h4>Dr Ilona Mercieca, GP</h4><p>Member of the Royal College of General Practitioners 2017</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n	        <h4>Mrs. Anna, Dental Nurse</h4><p>Smile Wisdom Academy of Dentistry &amp; Dental Nursing.</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n	        <h4>Dr Hiren Patel, GP</h4><p>Member of the Royal College of General Practitioners 2018</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n														  <li><a href=\"\" ></a></li>\n							            </ul>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/imgb1-13.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n								<figure><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Read More </a>\n						    <a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b14-18.jpeg\" alt=\"How to Talk to Your Child About Coronavirus Disease 2019\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">How to Talk to Your Child About Coronavirus Disease 2019</a></h4>\n							<p>It’s easy to feel overwhelmed by everything you’re hearing about coronavirus disease 2019 (COVID-19) right&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">Read More </a>\n			<h2>Frequently Asked Questions</h2>		\n			<p><a href=\"https://cli.21lab.co/contact/\">Have a question – Scroll through the list of frequently asked questions but if you don’t find your answer, feel free to give us a call or drop us a note. Find out More</a></p>		\n												<a href=\"\">Do I have to re-register if I have services at multiple locations?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">What information will the Patient Services Representative need to schedule an appointment?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">Will you bill my insurance?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">What if I can\'t make my appointment and I need to reschedule?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">If I call with a question for the nurse or doctor, when can I expect a call back?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n												<a href=\"\">How do I get my blood pressure checked?</a>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','About','','inherit','closed','closed','','351-revision-v1','','','2021-07-15 08:10:54','2021-07-15 08:10:54','',351,'https://demoweblinks.in/dental/?p=1954',0,'revision','',0),(1955,1,'2021-07-21 02:49:17','2021-07-21 02:49:17','<h6>Services and Programs</h6>		\n			          <h1>The Service Clilab Provide:\n			            VaccinationsEmergencyMedicineand More\n			          </h1>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/about\">\n											Overview Clilab\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team\">\n											Our Doctors\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n											Book an Appointment\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\" ></a>\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"#\" ></a>\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"#\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>','Services','','inherit','closed','closed','','859-revision-v1','','','2021-07-21 02:49:17','2021-07-21 02:49:17','',859,'https://demoweblinks.in/dental/?p=1955',0,'revision','',0),(1956,1,'2021-07-22 03:31:07','2021-07-22 03:31:07','<h5>Skip The Waiting Room!</h5>\n<h3> Register Online Before You Arrive.</h3>\nWe have up to date schedules, contact information, &amp; let you book appointments online.\n\n<a href=\"https://cli.21lab.co/book-an-appointment/\" style=\" \">Book an Appointment</a><a href=\"#request\" style=\" \">Request a Call Back</a>\n<h2>What is Lorem Ipsum?</h2>\n<strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n<h2>Why do we use it?</h2>\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\n<h2>Where does it come from?</h2>\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.\n\n<a href=\"\">Do I have to re-register if I have services at multiple locations?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"\">What information will the Patient Services Representative need to schedule an appointment?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"\">Will you bill my insurance?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"\">What if I can\'t make my appointment and I need to reschedule?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<a href=\"\">How do I get my blood pressure checked?</a>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n<h6>Here are industry experts who can help you</h6>\n<a href=\"https://cli.21lab.co/about/#team\" role=\"button\">\nGet To Know Our Doctors\n</a>\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Odile de Mesmay, GP</h4>\nGastroenterologist, therapist, Head of the Internal Medicine Clinic…\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Mohamed Sheikh, GP</h4>\nDirector and key member of our team of London based private\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Ilona Mercieca, GP</h4>\nMember of the Royal College of General Practitioners 2017\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Mrs. Anna, Dental Nurse</h4>\nSmile Wisdom Academy of Dentistry &amp; Dental Nursing.\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patelr, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"\"></a></li>\n</ul>\n<h4>Dr Hiren Patelr, GP</h4>\nMember of the Royal College of General Practitioners 2018\n<h6>Need some advice from our experts?</h6>\n<h3>Request a Call Back Today Now!</h3>\nWe will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/face.png\" alt=\"Contact\">\n<ul>\n 	<li> <a href=\"#\">The quickest way to get in contact is to telephone 03457 30 40 30</a></li>\n</ul>\n[contact-form-7 id=\"701\" title=\"Request a Call Back\"]','Service Single','','inherit','closed','closed','','1015-revision-v1','','','2021-07-22 03:31:07','2021-07-22 03:31:07','',1015,'https://demoweblinks.in/dental/?p=1956',0,'revision','',0),(1957,1,'2021-07-22 08:24:59','2021-07-22 08:24:59','Register Online Before You Arrive.		\n			<h2>We Look Forward to Welcoming You to the Clinic</h2>		\n		Our complete current fees guide is on display in the reception area.		\n									              <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/mouse.svg\" alt=\"Step 1\">\n									        <h4>Step 1</h4><p>Registration and Book your Appointment.</p>\n									              <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/walk.svg\" alt=\"Step 2\">\n									        <h4>Step 2</h4><p>Determines the appropriate time for you to leave</p>\n									              <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/verified.svg\" alt=\"Step 3\">\n									        <h4>Step 3</h4><p>See your doctor as soon as you arrive.</p>\n			<h6>Doctor Consultation Fee may varies between clinics.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			[ea_bootstrap width=\"100%\" layout_cols=\"2\"]','Book an Appointment','','inherit','closed','closed','','1078-revision-v1','','','2021-07-22 08:24:59','2021-07-22 08:24:59','',1078,'https://demoweblinks.in/dental/?p=1957',0,'revision','',0),(1958,1,'2021-07-24 15:01:56','2021-07-24 15:01:56','<h5>The 1980’s</h5><h3>NHE Increases &amp; COBRA</h3><p>By 1980, NHE accounted for 8.9 percent of GDP, an even larger leap than the decade prior. Under the Reagan Administration (1981-1989), regulations loosened across the board, and privatization of healthcare became increasingly common.</p><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/military-medal.svg\" alt=\"NHE Increases &amp; COBRA\"><h5>The 1990’s</h5><h3>HIPAA &amp; Medicaid Expansion</h3><p>By 1990, NHE accounted for 12.1 percent of GDP — the largest increase thus far in the history of healthcare. Like others before him, the 42nd President of the United States, Bill Clinton (1993-2001), saw that this rapid increase in healthcare expenses would be damaging to the average American and attempted to take action.</p><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/diamond.svg\" alt=\"HIPAA &amp; Medicaid Expansion\"><h5>The Early 2000’s</h5><h3>Extending Coverage</h3><p>The history of healthcare slowed down at that point, as the national healthcare debate was tabled while the U.S. focused on the increased threat of terrorism and the second Iraq War. It wasn’t until election campaign mumblings began in 2006 and 2007 that insurance worked its way back into the national discussion.</p><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/sports-fan.svg\" alt=\"Extending Coverage\"><h5>2008 to 2016</h5><h3>The Affordable Care Act</h3><p>When Barack Obama (2009-2017) was elected the 44th President of the United States in 2008, he wasted no time getting to work on healthcare reform. He worked closely with Senator Ted Kennedy to create a new healthcare law that mirrored the one Kennedy and Nixon worked on in the &#039;70s.</p><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/medication.svg\" alt=\"The Affordable Care Act\"><h5>2017</h5><h3> The Trump Presidency </h3><p>Since Donald Trump was sworn in as the 45th President of the United States on January 20, 2017, many have questioned what would happen with our healthcare system — specifically, what would happen to the ACA, since Donald Trump ran on a platform of “repealing and replacing” the bill.</p><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/brain.svg\" alt=\" The Trump Presidency \"><h5>Present</h5><h3>The Future of Healthcare</h3><p>Hungry to notch a win on healthcare prior to the 2020 election, the Trump administration continues to push ahead on initiatives designed to reign-in healthcare costs. </p><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/hands-heart.svg\" alt=\"The Future of Healthcare\">','History','','inherit','closed','closed','','1293-revision-v1','','','2021-07-24 15:01:56','2021-07-24 15:01:56','',1293,'https://demoweblinks.in/dental/?p=1958',0,'revision','',0),(1959,1,'2021-07-25 00:45:43','2021-07-25 00:45:43','<h6>PLEASE READ THROUGH THEIR PROFILES TO LEARN MORE.</h6>\n<a href=\"#contact\" role=\"button\">\nGet in touch\n</a>\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Odile de Mesmay, GP</h4>\nGASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC…\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Mrs. Anna, Dental Nurse</h4>\nSmile Wisdom Academy of Dentistry &amp; Dental Nursing.\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Mohamed Sheikh, GP</h4>\nDirector and key member of our team of London based private\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"\"></a></li>\n</ul>\n<h4>Dr Hiren Patel, GP</h4>\nMember of the Royal College of General Practitioners 2018\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Mohamed Sheikh, GP</h4>\nDirector and key member of our team of London based private\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"\"></a></li>\n</ul>\n<h4>Dr Hiren Patel, GP</h4>\nMember of the Royal College of General Practitioners 2018\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Ilona Mercieca, GP</h4>\nMember of the Royal College of General Practitioners 2017\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Odile de Mesmay, GP</h4>\nGASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC…\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Ilona Mercieca, GP</h4>\nMember of the Royal College of General Practitioners 2017\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Odile de Mesmay, GP</h4>\nGASTROENTEROLOGIST, HEAD OF THE INTERNAL MEDICINE CLINIC…\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Mrs. Anna, Dental Nurse</h4>\nSmile Wisdom Academy of Dentistry &amp; Dental Nursing.\n\n<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n<ul>\n 	<li><a href=\"#\"></a></li>\n</ul>\n<h4>Dr Mohamed Sheikh, GP</h4>\nDirector and key member of our team of London based private','Team','','inherit','closed','closed','','1301-revision-v1','','','2021-07-25 00:45:43','2021-07-25 00:45:43','',1301,'https://demoweblinks.in/dental/?p=1959',0,'revision','',0),(1960,1,'2021-07-26 02:20:41','2021-07-26 02:20:41','[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n															<img width=\"575\" height=\"728\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n								<figure><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Read More </a>\n						    <a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b14-18.jpeg\" alt=\"How to Talk to Your Child About Coronavirus Disease 2019\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">How to Talk to Your Child About Coronavirus Disease 2019</a></h4>\n							<p>It’s easy to feel overwhelmed by everything you’re hearing about coronavirus disease 2019 (COVID-19) right&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">Read More </a>','Home 3','','inherit','closed','closed','','1368-revision-v1','','','2021-07-26 02:20:41','2021-07-26 02:20:41','',1368,'https://demoweblinks.in/dental/?p=1960',0,'revision','',0),(1961,1,'2021-07-26 02:53:28','2021-07-26 02:53:28','<ul>\n							<li>\n										Free Delivery on all Orders Over $30\n									</li>\n								<li>\n										30 Days Money Back Guarantee\n									</li>\n								<li>\n										Call us on a Toll Free Phone Number\n									</li>\n						</ul>\n			WooCommerce		\n			<h3>Flat 25% OFF Medicine Order</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis		\n			<a href=\"#\" role=\"button\">\n						Shop Now\n					</a>\n			<figure><a href=\"#\"><img width=\"390\" height=\"150\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/imagebox3-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Save 50% - N95 Face Mask</a></h3><p>Shop Now</p>		\n			<figure><a href=\"#\"><img width=\"390\" height=\"150\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/imagebox2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Save 35% - Functional Foods </a></h3><p>Shop Now</p>		\n			<figure><a href=\"#\"><img width=\"390\" height=\"150\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/imagebox-9.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Save 25% - The Medical Kit</a></h3><p>Shop Now</p>		\n			<h2>Featured Products</h2>		\n		[products limit=\"5\" visibility=\"featured\" ]		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h2>Sale Products</h2>		\n		[sale_products]		\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/imgb1-13.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h2>Recent Products</h2>		\n		[products limit=\"10\"]		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h2>From The Blog</h2>		\n						    <a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/covid-tongue-be-considered-as-a-symptom-after-all/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/top-20-drug-and-medicine-name-origins/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b14-18.jpeg\" alt=\"How to Talk to Your Child About Coronavirus Disease 2019\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">How to Talk to Your Child About Coronavirus Disease 2019</a></h4>\n							<p>It’s easy to feel overwhelmed by everything you’re hearing about coronavirus disease 2019 (COVID-19) right&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/how-to-talk-to-your-child-about-coronavirus-disease-2019/\">READ MORE </a>','Home 4','','inherit','closed','closed','','1378-revision-v1','','','2021-07-26 02:53:28','2021-07-26 02:53:28','',1378,'https://demoweblinks.in/dental/?p=1961',0,'revision','',0),(1962,1,'2021-08-17 15:01:18','2021-08-17 15:01:18','[rev_slider alias=\"home\" slidertitle=\"Homepage\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h6>Our team of highly trained doctors</h6>		\n			<h3>“ No matter what your concern, your first stop is one of our accessible, expert health professionals. ”</h3>		\n			<h6>Please read through their profiles to learn more.</h6>		\n			<a href=\"https://cli.21lab.co/about/team/\" role=\"button\">\n						Get To Know Our Doctors\n					</a>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-11-11.png\" alt=\"Dr Odile de Mesmay, GP\">\n	        <h4>Dr Odile de Mesmay, GP</h4><p>Gastroenterologist, therapist, Head of the Internal Medicine Clinic…</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-11.png\" alt=\"Dr Mohamed Sheikh, GP\">\n	        <h4>Dr Mohamed Sheikh, GP</h4><p>Director and key member of our team of London based private</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-12-11.png\" alt=\"Dr Ilona Mercieca, GP\">\n	        <h4>Dr Ilona Mercieca, GP</h4><p>Member of the Royal College of General Practitioners 2017</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-14-12.png\" alt=\"Mrs. Anna, Dental Nurse\">\n	        <h4>Mrs. Anna, Dental Nurse</h4><p>Smile Wisdom Academy of Dentistry &amp; Dental Nursing.</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n							            </ul>\n													<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-Copy-13-11.png\" alt=\"Dr Hiren Patel, GP\">\n	        <h4>Dr Hiren Patel, GP</h4><p>Member of the Royal College of General Practitioners 2018</p>	        \n            <ul>\n            								  <li><a href=\"#\"  ></a></li>\n														  <li><a href=\"\" ></a></li>\n							            </ul>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/imgb1-13.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://cli.21lab.co/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n															<img width=\"582\" height=\"654\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" />															\n			<h6>Here are some helpful links to get you answers faster.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n															<img width=\"575\" height=\"728\" src=\"https://cli.21lab.co/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://cli.21lab.co/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>','Homepage','','inherit','closed','closed','','1949-revision-v1','','','2021-08-17 15:01:18','2021-08-17 15:01:18','',1949,'https://demoweblinks.in/dental/?p=1962',0,'revision','',0),(1963,1,'2022-05-17 10:16:58','2022-05-17 10:16:58','{\n    \"clilab-child::global__typography__scheme\": {\n        \"value\": {\n            \"primary\": \"#163f7a\",\n            \"accent\": \"#029967\",\n            \"light\": \"#d4f7e8\",\n            \"dark\": \"#2a2a2a\",\n            \"grey\": \"rgba(2, 153, 103, 0.2)\",\n            \"yellow\": \"#fed700\",\n            \"orange\": \"#fe613f\",\n            \"red\": \"#f0163d\",\n            \"blue\": \"#02afec\",\n            \"green\": \"#00bf54\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:16:58\"\n    }\n}','','','trash','closed','closed','','a43f9ce3-6b3c-46fc-a139-69239f54584f','','','2022-05-17 10:16:58','2022-05-17 10:16:58','',0,'https://demoweblinks.in/dental/2022/05/17/a43f9ce3-6b3c-46fc-a139-69239f54584f/',0,'customize_changeset','',0),(1964,1,'2022-05-17 10:18:53','2022-05-17 10:18:53','{\n    \"clilab-child::global__typography__scheme\": {\n        \"value\": {\n            \"primary\": \"#163f7a\",\n            \"accent\": \"#37c5a6\",\n            \"light\": \"#d4f7e8\",\n            \"dark\": \"#2a2a2a\",\n            \"grey\": \"rgba(2, 153, 103, 0.2)\",\n            \"yellow\": \"#fed700\",\n            \"orange\": \"#fe613f\",\n            \"red\": \"#f0163d\",\n            \"blue\": \"#02afec\",\n            \"green\": \"#00bf54\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:18:53\"\n    }\n}','','','trash','closed','closed','','03f7cc72-dc6c-441a-9573-d8582ad4209b','','','2022-05-17 10:18:53','2022-05-17 10:18:53','',0,'https://demoweblinks.in/dental/2022/05/17/03f7cc72-dc6c-441a-9573-d8582ad4209b/',0,'customize_changeset','',0),(1965,1,'2022-05-17 10:19:20','2022-05-17 10:19:20','{\n    \"clilab-child::global__typography__scheme\": {\n        \"value\": {\n            \"primary\": \"#163f7a\",\n            \"accent\": \"#37c5a6\",\n            \"light\": \"#a0bce4\",\n            \"dark\": \"#2a2a2a\",\n            \"grey\": \"rgba(2, 153, 103, 0.2)\",\n            \"yellow\": \"#fed700\",\n            \"orange\": \"#fe613f\",\n            \"red\": \"#f0163d\",\n            \"blue\": \"#02afec\",\n            \"green\": \"#00bf54\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:19:20\"\n    }\n}','','','trash','closed','closed','','f8cf1ef8-ee8f-4bd1-9d51-c3d4d744484c','','','2022-05-17 10:19:20','2022-05-17 10:19:20','',0,'https://demoweblinks.in/dental/2022/05/17/f8cf1ef8-ee8f-4bd1-9d51-c3d4d744484c/',0,'customize_changeset','',0),(1966,1,'2022-05-17 10:19:56','2022-05-17 10:19:56','{\n    \"clilab-child::global__typography__colors\": {\n        \"value\": {\n            \"a\": \"#163f7a\",\n            \"a:hover\": \"#2a2a2a\",\n            \"a:visited\": \"\",\n            \"a:active, a:focus\": \"\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:19:56\"\n    }\n}','','','trash','closed','closed','','06864910-3604-449d-8e11-ae0033e615df','','','2022-05-17 10:19:56','2022-05-17 10:19:56','',0,'https://demoweblinks.in/dental/2022/05/17/06864910-3604-449d-8e11-ae0033e615df/',0,'customize_changeset','',0),(1967,1,'2022-05-17 10:55:34','2022-05-17 10:55:34','{\n    \"clilab-child::global__typography__scheme\": {\n        \"value\": {\n            \"primary\": \"#163f7a\",\n            \"accent\": \"#37c5a6\",\n            \"light\": \"#a0bce4\",\n            \"dark\": \"#2a2a2a\",\n            \"grey\": \"rgba(2, 153, 103, 0.2)\",\n            \"yellow\": \"#fed700\",\n            \"orange\": \"#fe613f\",\n            \"red\": \"#f0163d\",\n            \"blue\": \"#02afec\",\n            \"green\": \"#00bf54\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:29:40\"\n    },\n    \"clilab-child::header__style\": {\n        \"value\": \"style4\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:55:28\"\n    },\n    \"clilab-child::header__extras\": {\n        \"value\": [],\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:55:34\"\n    }\n}','','','trash','closed','closed','','a3c638b3-38b3-41b5-8b32-56f1eb2f6663','','','2022-05-17 10:55:34','2022-05-17 10:55:34','',0,'https://demoweblinks.in/dental/?p=1967',0,'customize_changeset','',0),(1968,1,'2022-05-17 10:33:22','2022-05-17 10:33:22','','bg18','','inherit','open','closed','','bg18','','','2022-05-17 10:33:22','2022-05-17 10:33:22','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/bg18.jpg',0,'attachment','image/jpeg',0),(1969,1,'2022-05-17 10:47:47','2022-05-17 10:47:47','','slider_02-1 (1)','','inherit','open','closed','','slider_02-1-1','','','2022-05-17 10:47:47','2022-05-17 10:47:47','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/slider_02-1-1.jpg',0,'attachment','image/jpeg',0),(1970,1,'2022-05-17 10:49:15','2022-05-17 10:49:15','','home-slide-1','','inherit','open','closed','','home-slide-1','','','2022-05-17 10:49:15','2022-05-17 10:49:15','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/home-slide-1.jpg',0,'attachment','image/jpeg',0),(1971,1,'2022-05-17 10:49:39','2022-05-17 10:49:39','','home-slide-2','','inherit','open','closed','','home-slide-2','','','2022-05-17 10:49:39','2022-05-17 10:49:39','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/home-slide-2.jpg',0,'attachment','image/jpeg',0),(1972,1,'2022-05-17 10:50:46','2022-05-17 10:50:46','','slider1-2','','inherit','open','closed','','slider1-2','','','2022-05-17 10:50:46','2022-05-17 10:50:46','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/slider1-2.jpg',0,'attachment','image/jpeg',0),(1973,1,'2022-05-17 10:58:09','0000-00-00 00:00:00','{\n    \"clilab-child::global__typography__scheme\": {\n        \"value\": {\n            \"primary\": \"#163f7a\",\n            \"accent\": \"#37c5a6\",\n            \"light\": \"#f3f3f3\",\n            \"dark\": \"#2a2a2a\",\n            \"grey\": \"rgba(2, 153, 103, 0.2)\",\n            \"yellow\": \"#fed700\",\n            \"orange\": \"#fe613f\",\n            \"red\": \"#f0163d\",\n            \"blue\": \"#02afec\",\n            \"green\": \"#00bf54\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:58:09\"\n    }\n}','','','auto-draft','closed','closed','','80a70782-0589-4af8-a4a2-6957bb4a129b','','','2022-05-17 10:58:09','0000-00-00 00:00:00','',0,'https://demoweblinks.in/dental/?p=1973',0,'customize_changeset','',0),(1974,1,'2022-05-17 11:00:30','2022-05-17 11:00:30','{\n    \"clilab-child::global__typography__scheme\": {\n        \"value\": {\n            \"primary\": \"#163f7a\",\n            \"accent\": \"#37c5a6\",\n            \"light\": \"#a0bce4\",\n            \"dark\": \"#2a2a2a\",\n            \"grey\": \"rgba(2, 153, 103, 0.2)\",\n            \"yellow\": \"#fed700\",\n            \"orange\": \"#fe613f\",\n            \"red\": \"#f0163d\",\n            \"blue\": \"#02afec\",\n            \"green\": \"#00bf54\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 10:59:33\"\n    },\n    \"clilab-child::global__typography__colors\": {\n        \"value\": {\n            \"a\": \"#efefef\",\n            \"a:hover\": \"#2a2a2a\",\n            \"a:visited\": \"\",\n            \"a:active, a:focus\": \"\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 11:00:30\"\n    }\n}','','','trash','closed','closed','','2e28517d-06b8-4941-8ac8-f0b963cb7114','','','2022-05-17 11:00:30','2022-05-17 11:00:30','',0,'https://demoweblinks.in/dental/?p=1974',0,'customize_changeset','',0),(1975,1,'2022-05-17 11:01:30','2022-05-17 11:01:30','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n				0\n							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n															<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:01:30','2022-05-17 11:01:30','',28,'https://demoweblinks.in/dental/?p=1975',0,'revision','',0),(1976,1,'2022-05-17 11:01:30','2022-05-17 11:01:30','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<figure><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n				0\n							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n															<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://cli.21lab.co/author/21lab/\">21lab</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://cli.21lab.co/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:01:30','2022-05-17 11:01:30','',28,'https://demoweblinks.in/dental/?p=1976',0,'revision','',0),(1977,1,'2022-05-17 11:01:30','2022-05-17 11:01:30','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:01:30','2022-05-17 11:01:30','',28,'https://demoweblinks.in/dental/?p=1977',0,'revision','',0),(1978,1,'2022-05-17 11:05:22','2022-05-17 11:05:22','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:05:22','2022-05-17 11:05:22','',28,'https://demoweblinks.in/dental/?p=1978',0,'revision','',0),(1979,1,'2022-05-17 11:05:22','2022-05-17 11:05:22','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:05:22','2022-05-17 11:05:22','',28,'https://demoweblinks.in/dental/?p=1979',0,'revision','',0),(1980,1,'2022-05-17 11:05:22','2022-05-17 11:05:22','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:05:22','2022-05-17 11:05:22','',28,'https://demoweblinks.in/dental/?p=1980',0,'revision','',0),(1981,1,'2022-05-17 11:05:40','2022-05-17 11:05:40','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:05:40','2022-05-17 11:05:40','',28,'https://demoweblinks.in/dental/?p=1981',0,'revision','',0),(1982,1,'2022-05-17 11:05:40','2022-05-17 11:05:40','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:05:40','2022-05-17 11:05:40','',28,'https://demoweblinks.in/dental/?p=1982',0,'revision','',0),(1983,1,'2022-05-17 11:05:40','2022-05-17 11:05:40','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:05:40','2022-05-17 11:05:40','',28,'https://demoweblinks.in/dental/?p=1983',0,'revision','',0),(1984,1,'2022-05-17 11:08:58','2022-05-17 11:08:58','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:08:58','2022-05-17 11:08:58','',28,'https://demoweblinks.in/dental/?p=1984',0,'revision','',0),(1985,1,'2022-05-17 11:08:58','2022-05-17 11:08:58','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:08:58','2022-05-17 11:08:58','',28,'https://demoweblinks.in/dental/?p=1985',0,'revision','',0),(1986,1,'2022-05-17 11:08:58','2022-05-17 11:08:58','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:08:58','2022-05-17 11:08:58','',28,'https://demoweblinks.in/dental/?p=1986',0,'revision','',0),(1987,1,'2022-05-17 11:09:30','2022-05-17 11:09:30','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:09:30','2022-05-17 11:09:30','',28,'https://demoweblinks.in/dental/?p=1987',0,'revision','',0),(1988,1,'2022-05-17 11:09:30','2022-05-17 11:09:30','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:09:30','2022-05-17 11:09:30','',28,'https://demoweblinks.in/dental/?p=1988',0,'revision','',0),(1989,1,'2022-05-17 11:09:31','2022-05-17 11:09:31','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:09:31','2022-05-17 11:09:31','',28,'https://demoweblinks.in/dental/?p=1989',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (1990,1,'2022-05-17 11:10:41','2022-05-17 11:10:41','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:10:41','2022-05-17 11:10:41','',28,'https://demoweblinks.in/dental/?p=1990',0,'revision','',0),(1991,1,'2022-05-17 11:10:41','2022-05-17 11:10:41','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to CliLab health services</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:10:41','2022-05-17 11:10:41','',28,'https://demoweblinks.in/dental/?p=1991',0,'revision','',0),(1992,1,'2022-05-17 11:10:41','2022-05-17 11:10:41','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:10:41','2022-05-17 11:10:41','',28,'https://demoweblinks.in/dental/?p=1992',0,'revision','',0),(1993,1,'2022-05-17 11:11:44','2022-05-17 11:11:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:11:44','2022-05-17 11:11:44','',28,'https://demoweblinks.in/dental/?p=1993',0,'revision','',0),(1994,1,'2022-05-17 11:11:44','2022-05-17 11:11:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>CliLab is a general 24-hour Clinic with foreign capital, confidently operating in the export of medical services.</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:11:44','2022-05-17 11:11:44','',28,'https://demoweblinks.in/dental/?p=1994',0,'revision','',0),(1995,1,'2022-05-17 11:11:44','2022-05-17 11:11:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>For the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:11:44','2022-05-17 11:11:44','',28,'https://demoweblinks.in/dental/?p=1995',0,'revision','',0),(1996,1,'2022-05-17 11:13:03','2022-05-17 11:13:03','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>For the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:13:03','2022-05-17 11:13:03','',28,'https://demoweblinks.in/dental/?p=1996',0,'revision','',0),(1997,1,'2022-05-17 11:13:03','2022-05-17 11:13:03','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>For the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:13:03','2022-05-17 11:13:03','',28,'https://demoweblinks.in/dental/?p=1997',0,'revision','',0),(1998,1,'2022-05-17 11:13:03','2022-05-17 11:13:03','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:13:03','2022-05-17 11:13:03','',28,'https://demoweblinks.in/dental/?p=1998',0,'revision','',0),(2000,1,'2022-05-17 11:14:48','2022-05-17 11:14:48','[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','home3','','publish','closed','closed','','home3','','','2022-05-17 11:14:48','2022-05-17 11:14:48','',0,'https://demoweblinks.in/dental/?elementor_library=home3',0,'elementor_library','',0),(2001,1,'2022-05-17 11:14:48','2022-05-17 11:14:48','','home3','','inherit','closed','closed','','2000-revision-v1','','','2022-05-17 11:14:48','2022-05-17 11:14:48','',2000,'https://demoweblinks.in/dental/?p=2001',0,'revision','',0),(2002,1,'2022-05-17 11:14:48','2022-05-17 11:14:48','[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','home3','','inherit','closed','closed','','2000-revision-v1','','','2022-05-17 11:14:48','2022-05-17 11:14:48','',2000,'https://demoweblinks.in/dental/?p=2002',0,'revision','',0),(2003,1,'2022-05-17 11:16:31','2022-05-17 11:16:31','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:16:31','2022-05-17 11:16:31','',28,'https://demoweblinks.in/dental/?p=2003',0,'revision','',0),(2004,1,'2022-05-17 11:16:32','2022-05-17 11:16:32','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h2>Commitment to Quality Care</h2>		\n		<p><strong>Patient Centered-Care</strong></p><p>Tailored to meet the needs of each individual and allows patients to remain in the comfort of their homes.</p>		\n		<p><strong>Quality Improvement</strong></p><p>At Clilab We\'are to continuously improve its standard of care delivery.</p>		\n		<p><strong>Healthcare Technology</strong></p><p>Investment in rapidly developing healthcare technology allows We to further streamline services</p>		\n			<a href=\"https://cli.21lab.co/services/\" role=\"button\">\n						Discover Services we Provide\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"582\" height=\"654\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11.jpeg 582w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3229594-png-11-267x300.jpeg 267w\" sizes=\"(max-width: 582px) 100vw, 582px\" />															\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b8-19.jpeg\" alt=\"So, You Have Completed Your COVID Vaccination.\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">So, You Have Completed Your COVID Vaccination.</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>As COVID vaccinations emerge, there are a few things to consider once your vaccinations are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/so-you-have-completed-your-covid-vaccination/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b13-18.jpeg\" alt=\"6 Natural Ways to Keep Your Prostate Happy and Healthy\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">6 Natural Ways to Keep Your Prostate Happy and Healthy</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Every person is in charge of maintaining their own good health. Following a balanced diet,&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/6-natural-ways-to-keep-your-prostate-happy-and-healthy/\">READ MORE </a>\n			<figure><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\"><img width=\"730\" height=\"640\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Artboard-9-12.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/how-to-get-the-most-out-of-physical-therapy/\">July 9, 2011</a></h3><p>How to Get the Most Out of Physical Therapy</p>		\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b2-18.jpeg\" alt=\"The Cheat is On: Protecting Yourself From Scams\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">The Cheat is On: Protecting Yourself From Scams</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>Imagine getting an email from your panic- stricken granddaughter, who’s been in a serious car&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/the-cheat-is-on-protecting-yourself-from-scams/\">READ MORE </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b12-18.jpeg\" alt=\"Can your doctor drop your Medicare Advantage plan?\"></a>\n              <h4><a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">Can your doctor drop your Medicare Advantage plan?</a></h4>\n              <ul>\n                <li> July 8, 2021</li>                <li> <a href=\"https://demoweblinks.in/dental/author/dental-admin/\">dental-admin</a></li>              </ul>\n              <p>I was recently asked an excellent question, and it was, “Can your doctors add or&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/08/can-your-doctor-drop-your-medicare-advantage-plan/\">READ MORE </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:16:32','2022-05-17 11:16:32','',28,'https://demoweblinks.in/dental/?p=2004',0,'revision','',0),(2005,1,'2022-05-17 11:16:32','2022-05-17 11:16:32','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:16:32','2022-05-17 11:16:32','',28,'https://demoweblinks.in/dental/?p=2005',0,'revision','',0),(2006,1,'2022-05-17 11:17:13','2022-05-17 11:17:13','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:17:13','2022-05-17 11:17:13','',28,'https://demoweblinks.in/dental/?p=2006',0,'revision','',0),(2007,1,'2022-05-17 11:17:13','2022-05-17 11:17:13','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:17:13','2022-05-17 11:17:13','',28,'https://demoweblinks.in/dental/?p=2007',0,'revision','',0),(2008,1,'2022-05-17 11:17:13','2022-05-17 11:17:13','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:17:13','2022-05-17 11:17:13','',28,'https://demoweblinks.in/dental/?p=2008',0,'revision','',0),(2009,1,'2022-05-17 11:18:29','2022-05-17 11:18:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:18:29','2022-05-17 11:18:29','',28,'https://demoweblinks.in/dental/?p=2009',0,'revision','',0),(2010,1,'2022-05-17 11:18:29','2022-05-17 11:18:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:18:29','2022-05-17 11:18:29','',28,'https://demoweblinks.in/dental/?p=2010',0,'revision','',0),(2011,1,'2022-05-17 11:18:29','2022-05-17 11:18:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:18:29','2022-05-17 11:18:29','',28,'https://demoweblinks.in/dental/?p=2011',0,'revision','',0),(2012,1,'2022-05-17 11:21:19','2022-05-17 11:21:19','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:21:19','2022-05-17 11:21:19','',28,'https://demoweblinks.in/dental/?p=2012',0,'revision','',0),(2013,1,'2022-05-17 11:21:19','2022-05-17 11:21:19','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:21:19','2022-05-17 11:21:19','',28,'https://demoweblinks.in/dental/?p=2013',0,'revision','',0),(2014,1,'2022-05-17 11:21:19','2022-05-17 11:21:19','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:21:19','2022-05-17 11:21:19','',28,'https://demoweblinks.in/dental/?p=2014',0,'revision','',0),(2015,1,'2022-05-17 11:21:55','2022-05-17 11:21:55','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:21:55','2022-05-17 11:21:55','',28,'https://demoweblinks.in/dental/?p=2015',0,'revision','',0),(2016,1,'2022-05-17 11:21:55','2022-05-17 11:21:55','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:21:55','2022-05-17 11:21:55','',28,'https://demoweblinks.in/dental/?p=2016',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2017,1,'2022-05-17 11:21:56','2022-05-17 11:21:56','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:21:56','2022-05-17 11:21:56','',28,'https://demoweblinks.in/dental/?p=2017',0,'revision','',0),(2018,1,'2022-05-17 11:25:01','2022-05-17 11:25:01','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:25:01','2022-05-17 11:25:01','',28,'https://demoweblinks.in/dental/?p=2018',0,'revision','',0),(2019,1,'2022-05-17 11:25:01','2022-05-17 11:25:01','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:25:01','2022-05-17 11:25:01','',28,'https://demoweblinks.in/dental/?p=2019',0,'revision','',0),(2020,1,'2022-05-17 11:25:02','2022-05-17 11:25:02','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:25:02','2022-05-17 11:25:02','',28,'https://demoweblinks.in/dental/?p=2020',0,'revision','',0),(2021,1,'2022-05-17 11:25:52','2022-05-17 11:25:52','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:25:52','2022-05-17 11:25:52','',28,'https://demoweblinks.in/dental/?p=2021',0,'revision','',0),(2022,1,'2022-05-17 11:25:52','2022-05-17 11:25:52','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:25:52','2022-05-17 11:25:52','',28,'https://demoweblinks.in/dental/?p=2022',0,'revision','',0),(2023,1,'2022-05-17 11:25:52','2022-05-17 11:25:52','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:25:52','2022-05-17 11:25:52','',28,'https://demoweblinks.in/dental/?p=2023',0,'revision','',0),(2024,1,'2022-05-17 11:26:19','2022-05-17 11:26:19','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:26:19','2022-05-17 11:26:19','',28,'https://demoweblinks.in/dental/?p=2024',0,'revision','',0),(2025,1,'2022-05-17 11:26:19','2022-05-17 11:26:19','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:26:19','2022-05-17 11:26:19','',28,'https://demoweblinks.in/dental/?p=2025',0,'revision','',0),(2026,1,'2022-05-17 11:26:19','2022-05-17 11:26:19','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:26:19','2022-05-17 11:26:19','',28,'https://demoweblinks.in/dental/?p=2026',0,'revision','',0),(2027,1,'2022-05-17 11:26:38','2022-05-17 11:26:38','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:26:38','2022-05-17 11:26:38','',28,'https://demoweblinks.in/dental/?p=2027',0,'revision','',0),(2028,1,'2022-05-17 11:26:38','2022-05-17 11:26:38','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:26:38','2022-05-17 11:26:38','',28,'https://demoweblinks.in/dental/?p=2028',0,'revision','',0),(2029,1,'2022-05-17 11:26:38','2022-05-17 11:26:38','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:26:38','2022-05-17 11:26:38','',28,'https://demoweblinks.in/dental/?p=2029',0,'revision','',0),(2030,1,'2022-05-17 11:29:29','2022-05-17 11:29:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:29:29','2022-05-17 11:29:29','',28,'https://demoweblinks.in/dental/?p=2030',0,'revision','',0),(2031,1,'2022-05-17 11:29:29','2022-05-17 11:29:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:29:29','2022-05-17 11:29:29','',28,'https://demoweblinks.in/dental/?p=2031',0,'revision','',0),(2032,1,'2022-05-17 11:29:29','2022-05-17 11:29:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:29:29','2022-05-17 11:29:29','',28,'https://demoweblinks.in/dental/?p=2032',0,'revision','',0),(2033,1,'2022-05-17 11:30:03','2022-05-17 11:30:03','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:30:03','2022-05-17 11:30:03','',28,'https://demoweblinks.in/dental/?p=2033',0,'revision','',0),(2034,1,'2022-05-17 11:30:03','2022-05-17 11:30:03','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:30:03','2022-05-17 11:30:03','',28,'https://demoweblinks.in/dental/?p=2034',0,'revision','',0),(2035,1,'2022-05-17 11:30:04','2022-05-17 11:30:04','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:30:04','2022-05-17 11:30:04','',28,'https://demoweblinks.in/dental/?p=2035',0,'revision','',0),(2036,1,'2022-05-17 11:33:59','2022-05-17 11:33:59','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','home1','','publish','closed','closed','','home1','','','2022-05-17 11:33:59','2022-05-17 11:33:59','',0,'https://demoweblinks.in/dental/?elementor_library=home1',0,'elementor_library','',0),(2037,1,'2022-05-17 11:33:59','2022-05-17 11:33:59','','home1','','inherit','closed','closed','','2036-revision-v1','','','2022-05-17 11:33:59','2022-05-17 11:33:59','',2036,'https://demoweblinks.in/dental/?p=2037',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2038,1,'2022-05-17 11:33:59','2022-05-17 11:33:59','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','home1','','inherit','closed','closed','','2036-revision-v1','','','2022-05-17 11:33:59','2022-05-17 11:33:59','',2036,'https://demoweblinks.in/dental/?p=2038',0,'revision','',0),(2040,1,'2022-05-17 11:36:24','2022-05-17 11:36:24','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:36:24','2022-05-17 11:36:24','',28,'https://demoweblinks.in/dental/?p=2040',0,'revision','',0),(2041,1,'2022-05-17 11:36:24','2022-05-17 11:36:24','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\">\n			                  <h4>We Do Care About Your Health</h4><p>FIND OUT HOW WE CAN HELP?</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\">\n			                  <h4>How to Stay Healthy For Life</h4><p>FIND MORE INFORMATION</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			                  <img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\">\n			                  <h4>Providing the Best Health Solutions</h4><p>LEARN MORE ABOUT THEM</p><a href=\"https://cli.21lab.co/services/\" ></a>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:36:24','2022-05-17 11:36:24','',28,'https://demoweblinks.in/dental/?p=2041',0,'revision','',0),(2042,1,'2022-05-17 11:36:24','2022-05-17 11:36:24','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:36:24','2022-05-17 11:36:24','',28,'https://demoweblinks.in/dental/?p=2042',0,'revision','',0),(2043,1,'2022-05-17 11:37:11','2022-05-17 11:37:11','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:37:11','2022-05-17 11:37:11','',28,'https://demoweblinks.in/dental/?p=2043',0,'revision','',0),(2044,1,'2022-05-17 11:37:11','2022-05-17 11:37:11','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"https://cli.21lab.co/book-an-appointment/\"><img width=\"2560\" height=\"1000\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Bitmap.jpg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"https://cli.21lab.co/book-an-appointment/\">Save Time. Feel Better.</a></h3><p>Skip The Waiting Room! Register Online Before You Arrive.<br>\n<a href=\"https://cli.21lab.co/book-an-appointment/\">Book an Appointment</a></p>		\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:37:11','2022-05-17 11:37:11','',28,'https://demoweblinks.in/dental/?p=2044',0,'revision','',0),(2045,1,'2022-05-17 11:37:12','2022-05-17 11:37:12','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:37:12','2022-05-17 11:37:12','',28,'https://demoweblinks.in/dental/?p=2045',0,'revision','',0),(2046,1,'2022-05-17 11:37:44','2022-05-17 11:37:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:37:44','2022-05-17 11:37:44','',28,'https://demoweblinks.in/dental/?p=2046',0,'revision','',0),(2047,1,'2022-05-17 11:37:44','2022-05-17 11:37:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h6>Below is our mission</h6>		\n			<h3>“ Our mission is to enhence health<br>and well-being by providing the best total healthcare. ”</h3>		\n			<h6>​Discover the key facts and figures behind Clilab</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support?\n					</a>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-counter .elementor-counter-number-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{-webkit-box-flex:1;-ms-flex-positive:1;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							Patients Served Since 2008\n				0\n							Volunteer Doctors  Support\n				$\n				0\n							Million Given in In-Kind Services\n				0\n				+\n							Free Patient Visits Each Month\n				0\n				%\n							Our Client Satisfaction Rate\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:37:44','2022-05-17 11:37:44','',28,'https://demoweblinks.in/dental/?p=2047',0,'revision','',0),(2048,1,'2022-05-17 11:37:44','2022-05-17 11:37:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:37:44','2022-05-17 11:37:44','',28,'https://demoweblinks.in/dental/?p=2048',0,'revision','',0),(2050,1,'2022-05-17 11:40:10','2022-05-17 11:40:10','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:40:10','2022-05-17 11:40:10','',28,'https://demoweblinks.in/dental/?p=2050',0,'revision','',0),(2051,1,'2022-05-17 11:40:10','2022-05-17 11:40:10','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n		[rev_slider alias=\"homepage-3\" slidertitle=\"Homepage 3\"][/rev_slider]		\n			<h6>Quick links to the information and resources you need.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need For Support\n					</a>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/contact/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>square pin</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline data-cap=\"butt\" points=\"12.546,23 7,23 2,31 30,31 25,23 19.454,23 \" stroke-linecap=\"butt\" stroke=\"#2a2a2a\"></polyline><path d=\"M26,10.582 C26,16.473,16,27,16,27S6,16.473,6,10.582c0-6.04,5.168-9.545,10-9.545S26,4.541,26,10.582z\"></path><circle cx=\"16\" cy=\"11.036\" r=\"3\"></circle></g></svg>						\n										Fint a Location\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>cheque 3</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"15\" y1=\"7\" x2=\"25\" y2=\"7\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"13\" x2=\"25\" y2=\"13\" stroke=\"#2a2a2a\"></line><line x1=\"15\" y1=\"19\" x2=\"25\" y2=\"19\" stroke=\"#2a2a2a\"></line><path data-cap=\"butt\" d=\"M19,28c0-1.657,1.343-3,3-3H4 c-1.657,0-3,1.343-3,3v3h18V28z\" stroke-linecap=\"butt\"></path><path data-cap=\"butt\" d=\"M22,25c1.657,0,3,1.343,3,3 s1.343,3,3,3s3-1.343,3-3V1.032H9V25\" stroke-linecap=\"butt\"></path></g></svg>						\n										Pay a Bill\n											</a>\n									</li>\n						</ul>\n			<h2>How can we help you?</h2>		\n			<p><a href=\"https://cli.21lab.co/services/\">Our Devotion shows in the comprehensive care we provide for our patients. All of us at CliLab are committed to our mission: To Help You Live Your Healthiest Life. </a></p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-28-13.jpeg\" alt=\"We Do Care About Your Health\"><h3>We Do Care About Your Health</h3><p>FIND OUT HOW WE CAN HELP?</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-35-13.jpeg\" alt=\"How to Stay Healthy For Life\"><h3>How to Stay Healthy For Life</h3><p>FIND MORE INFORMATION</p><a href=\"#\"  >Read More </a>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/Rectangle-Copy-36-13.jpeg\" alt=\"Providing the Best Health Solutions\"><h3>Providing the Best Health Solutions</h3><p>LEARN MORE ABOUT THEM</p><a href=\"#\"  >Read More </a>		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\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:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{-webkit-box-align:end;-ms-flex-align:end;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><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner1-10.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<figure><a href=\"#\"><img width=\"625\" height=\"250\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/banner2-8.jpeg\" alt=\"\" loading=\"lazy\" /></a></figure><h3><a href=\"#\">Vaccine Covid-19</a></h3><p>Secure delivery without contacting\n<a>Shop Now</a></p>		\n			<h6>From Our Blog - Medical News, Clinical Trials and Guidelines</h6>		\n			<a href=\"https://cli.21lab.co/blog/\" role=\"button\">\n						See More Posts\n					</a>\n					  	<h4><a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Hello world!</a></h4>\n							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n		  				<a href=\"https://demoweblinks.in/dental/2022/05/17/hello-world/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b16-18.jpeg\" alt=\"COVID Tongue: Be Considered as a Symptom After All?\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">COVID Tongue: Be Considered as a Symptom After All?</a></h4>\n							<p>Dentists have been known to diagnose plethora of diseases through oral cavity which is supposed&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/covid-tongue-be-considered-as-a-symptom-after-all/\">Read More </a>\n						    <a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\"><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/07/b5-18.jpeg\" alt=\"Top 20 Drug and Medicine Name Origins!\"></a>\n	              9 Jul						  \n					  	<h4><a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Top 20 Drug and Medicine Name Origins!</a></h4>\n							<p>Interesting Drug Name Origins! Medicines don’t get their names out of thin air. There are&#8230;</p>\n		  				<a href=\"https://demoweblinks.in/dental/2021/07/09/top-20-drug-and-medicine-name-origins/\">Read More </a>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:40:10','2022-05-17 11:40:10','',28,'https://demoweblinks.in/dental/?p=2051',0,'revision','',0),(2052,1,'2022-05-17 11:40:10','2022-05-17 11:40:10','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:40:10','2022-05-17 11:40:10','',28,'https://demoweblinks.in/dental/?p=2052',0,'revision','',0),(2053,1,'2022-05-17 11:40:57','2022-05-17 11:40:57','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:40:57','2022-05-17 11:40:57','',28,'https://demoweblinks.in/dental/?p=2053',0,'revision','',0),(2054,1,'2022-05-17 11:40:57','2022-05-17 11:40:57','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:40:57','2022-05-17 11:40:57','',28,'https://demoweblinks.in/dental/?p=2054',0,'revision','',0),(2055,1,'2022-05-17 11:40:57','2022-05-17 11:40:57','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:40:57','2022-05-17 11:40:57','',28,'https://demoweblinks.in/dental/?p=2055',0,'revision','',0),(2056,1,'2022-05-17 11:43:21','0000-00-00 00:00:00','{\n    \"clilab-child::footer__widgets__layout\": {\n        \"value\": {\n            \"columns\": 4,\n            \"layout\": {\n                \"1\": [\n                    12\n                ],\n                \"2\": [\n                    6,\n                    6\n                ],\n                \"3\": [\n                    4,\n                    4,\n                    4\n                ],\n                \"4\": [\n                    3,\n                    3,\n                    3,\n                    3\n                ]\n            }\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 11:43:21\"\n    }\n}','','','auto-draft','closed','closed','','39cafa29-38d3-4b80-bc12-adf4eba03fbc','','','2022-05-17 11:43:21','2022-05-17 11:43:21','',0,'https://demoweblinks.in/dental/?p=2056',0,'customize_changeset','',0),(2057,1,'2022-05-17 11:42:44','2022-05-17 11:42:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:42:44','2022-05-17 11:42:44','',28,'https://demoweblinks.in/dental/?p=2057',0,'revision','',0),(2058,1,'2022-05-17 11:42:44','2022-05-17 11:42:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:42:44','2022-05-17 11:42:44','',28,'https://demoweblinks.in/dental/?p=2058',0,'revision','',0),(2059,1,'2022-05-17 11:42:44','2022-05-17 11:42:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:42:44','2022-05-17 11:42:44','',28,'https://demoweblinks.in/dental/?p=2059',0,'revision','',0),(2061,1,'2022-05-17 11:46:28','2022-05-17 11:46:28','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:46:28','2022-05-17 11:46:28','',28,'https://demoweblinks.in/dental/?p=2061',0,'revision','',0),(2062,1,'2022-05-17 11:46:28','2022-05-17 11:46:28','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:46:28','2022-05-17 11:46:28','',28,'https://demoweblinks.in/dental/?p=2062',0,'revision','',0),(2063,1,'2022-05-17 11:46:28','2022-05-17 11:46:28','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:46:28','2022-05-17 11:46:28','',28,'https://demoweblinks.in/dental/?p=2063',0,'revision','',0),(2065,1,'2022-05-17 11:51:54','2022-05-17 11:51:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:51:54','2022-05-17 11:51:54','',28,'https://demoweblinks.in/dental/?p=2065',0,'revision','',0),(2066,1,'2022-05-17 11:51:54','2022-05-17 11:51:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:51:54','2022-05-17 11:51:54','',28,'https://demoweblinks.in/dental/?p=2066',0,'revision','',0),(2067,1,'2022-05-17 11:51:54','2022-05-17 11:51:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:51:54','2022-05-17 11:51:54','',28,'https://demoweblinks.in/dental/?p=2067',0,'revision','',0),(2068,1,'2022-05-17 11:54:38','2022-05-17 11:54:38','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:54:38','2022-05-17 11:54:38','',28,'https://demoweblinks.in/dental/?p=2068',0,'revision','',0),(2069,1,'2022-05-17 11:54:38','2022-05-17 11:54:38','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:54:38','2022-05-17 11:54:38','',28,'https://demoweblinks.in/dental/?p=2069',0,'revision','',0),(2070,1,'2022-05-17 11:54:38','2022-05-17 11:54:38','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:54:38','2022-05-17 11:54:38','',28,'https://demoweblinks.in/dental/?p=2070',0,'revision','',0),(2071,1,'2022-05-17 11:55:16','2022-05-17 11:55:16','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:55:16','2022-05-17 11:55:16','',28,'https://demoweblinks.in/dental/?p=2071',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2072,1,'2022-05-17 11:55:16','2022-05-17 11:55:16','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:55:16','2022-05-17 11:55:16','',28,'https://demoweblinks.in/dental/?p=2072',0,'revision','',0),(2073,1,'2022-05-17 11:55:16','2022-05-17 11:55:16','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:55:16','2022-05-17 11:55:16','',28,'https://demoweblinks.in/dental/?p=2073',0,'revision','',0),(2074,1,'2022-05-17 11:58:53','2022-05-17 11:58:53','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:58:53','2022-05-17 11:58:53','',28,'https://demoweblinks.in/dental/?p=2074',0,'revision','',0),(2075,1,'2022-05-17 11:58:53','2022-05-17 11:58:53','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:58:53','2022-05-17 11:58:53','',28,'https://demoweblinks.in/dental/?p=2075',0,'revision','',0),(2076,1,'2022-05-17 11:58:53','2022-05-17 11:58:53','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:58:53','2022-05-17 11:58:53','',28,'https://demoweblinks.in/dental/?p=2076',0,'revision','',0),(2077,1,'2022-05-17 11:59:36','2022-05-17 11:59:36','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:59:36','2022-05-17 11:59:36','',28,'https://demoweblinks.in/dental/?p=2077',0,'revision','',0),(2078,1,'2022-05-17 11:59:36','2022-05-17 11:59:36','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:59:36','2022-05-17 11:59:36','',28,'https://demoweblinks.in/dental/?p=2078',0,'revision','',0),(2079,1,'2022-05-17 11:59:36','2022-05-17 11:59:36','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 11:59:36','2022-05-17 11:59:36','',28,'https://demoweblinks.in/dental/?p=2079',0,'revision','',0),(2080,1,'2022-05-17 12:00:51','2022-05-17 12:00:51','{\n    \"clilab-child::global__typography__scheme\": {\n        \"value\": {\n            \"primary\": \"#163f7a\",\n            \"accent\": \"#37c5a6\",\n            \"light\": \"#d6f8e9\",\n            \"dark\": \"#2a2a2a\",\n            \"grey\": \"rgba(2, 153, 103, 0.2)\",\n            \"yellow\": \"#fed700\",\n            \"orange\": \"#fe613f\",\n            \"red\": \"#f0163d\",\n            \"blue\": \"#02afec\",\n            \"green\": \"#00bf54\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:00:51\"\n    }\n}','','','trash','closed','closed','','d25d6e6a-2815-4a81-93c9-1f1f8cb83ef6','','','2022-05-17 12:00:51','2022-05-17 12:00:51','',0,'https://demoweblinks.in/dental/2022/05/17/d25d6e6a-2815-4a81-93c9-1f1f8cb83ef6/',0,'customize_changeset','',0),(2081,1,'2022-05-17 12:01:08','2022-05-17 12:01:08','{\n    \"clilab-child::global__typography__colors\": {\n        \"value\": {\n            \"a\": \"#333030\",\n            \"a:hover\": \"#2a2a2a\",\n            \"a:visited\": \"\",\n            \"a:active, a:focus\": \"\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:01:08\"\n    }\n}','','','trash','closed','closed','','679226ee-db30-470a-94f9-960eafecc8c7','','','2022-05-17 12:01:08','2022-05-17 12:01:08','',0,'https://demoweblinks.in/dental/2022/05/17/679226ee-db30-470a-94f9-960eafecc8c7/',0,'customize_changeset','',0),(2082,1,'2022-05-17 12:14:45','2022-05-17 12:14:45','','vdental','','inherit','open','closed','','vdental','','','2022-05-17 12:14:45','2022-05-17 12:14:45','',0,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/vdental.png',0,'attachment','image/png',0),(2083,1,'2022-05-17 12:15:42','2022-05-17 12:15:42','{\n    \"clilab-child::logoDefault__logo\": {\n        \"value\": {\n            \"id\": 2082,\n            \"url\": \"https://demoweblinks.in/dental/wp-content/uploads/2022/05/vdental.png\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:15:03\"\n    },\n    \"clilab-child::logoDefault__logoSize\": {\n        \"value\": {\n            \"width\": \"200\",\n            \"height\": \"65\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:15:42\"\n    }\n}','','','trash','closed','closed','','610b95c2-464c-49ec-8db0-8afebac5c3d4','','','2022-05-17 12:15:42','2022-05-17 12:15:42','',0,'https://demoweblinks.in/dental/?p=2083',0,'customize_changeset','',0),(2084,1,'2022-05-17 12:16:19','2022-05-17 12:16:19','{\n    \"clilab-child::logoDefault__logoRetina\": {\n        \"value\": {\n            \"id\": 2082,\n            \"url\": \"https://demoweblinks.in/dental/wp-content/uploads/2022/05/vdental.png\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:16:19\"\n    }\n}','','','trash','closed','closed','','eb8dc348-5ca6-4792-8d67-c4d60a83054f','','','2022-05-17 12:16:19','2022-05-17 12:16:19','',0,'https://demoweblinks.in/dental/2022/05/17/eb8dc348-5ca6-4792-8d67-c4d60a83054f/',0,'customize_changeset','',0),(2085,1,'2022-05-17 12:21:20','2022-05-17 12:21:20','{\n    \"clilab-child::logoDefault__logo\": {\n        \"value\": {\n            \"id\": 2082,\n            \"url\": \"https://demoweblinks.in/dental/wp-content/uploads/2022/05/vdental-e1652789849269.png\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:17:42\"\n    },\n    \"clilab-child::global__typography__scheme\": {\n        \"value\": {\n            \"primary\": \"#163f7a\",\n            \"accent\": \"#37c5a6\",\n            \"light\": \"#63ffdd\",\n            \"dark\": \"#2a2a2a\",\n            \"grey\": \"rgba(2, 153, 103, 0.2)\",\n            \"yellow\": \"#fed700\",\n            \"orange\": \"#fe613f\",\n            \"red\": \"#f0163d\",\n            \"blue\": \"#02afec\",\n            \"green\": \"#00bf54\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:21:20\"\n    },\n    \"clilab-child::global__typography__body\": {\n        \"value\": {\n            \"family\": \"Lexend/100,300,regular,500,600,700,800/latin,latin-ext,vietnamese\",\n            \"style\": \"300\",\n            \"color\": \"#ffffff\",\n            \"size\": \"15px\",\n            \"lineHeight\": \"160%\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:21:20\"\n    }\n}','','','trash','closed','closed','','6a04a93b-e30e-4f57-b2f4-4eb8b398131b','','','2022-05-17 12:21:20','2022-05-17 12:21:20','',0,'https://demoweblinks.in/dental/?p=2085',0,'customize_changeset','',0),(2086,1,'2022-05-17 12:17:10','2022-05-17 12:17:10','{\n    \"clilab-child::logoDefault__logoSize\": {\n        \"value\": {\n            \"width\": \"\",\n            \"height\": \"\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:17:10\"\n    }\n}','','','trash','closed','closed','','6f8d607c-0a03-4619-a8c7-1321c29f6b02','','','2022-05-17 12:17:10','2022-05-17 12:17:10','',0,'https://demoweblinks.in/dental/2022/05/17/6f8d607c-0a03-4619-a8c7-1321c29f6b02/',0,'customize_changeset','',0),(2087,1,'2022-05-17 12:17:30','2022-05-17 12:17:30','{\n    \"clilab-child::logoDefault__logoSize\": {\n        \"value\": {\n            \"width\": \"235\",\n            \"height\": \"65\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:17:30\"\n    }\n}','','','trash','closed','closed','','548aaf6b-bfdf-405e-b5a5-77c97d7a7699','','','2022-05-17 12:17:30','2022-05-17 12:17:30','',0,'https://demoweblinks.in/dental/2022/05/17/548aaf6b-bfdf-405e-b5a5-77c97d7a7699/',0,'customize_changeset','',0),(2088,1,'2022-05-17 12:19:34','2022-05-17 12:19:34','{\n    \"clilab-child::logoDefault__logo\": {\n        \"value\": {\n            \"id\": 2082,\n            \"url\": \"https://demoweblinks.in/dental/wp-content/uploads/2022/05/vdental-e1652789946855.png\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:19:32\"\n    },\n    \"clilab-child::logoDefault__logoRetina\": {\n        \"value\": {\n            \"id\": 2082,\n            \"url\": \"https://demoweblinks.in/dental/wp-content/uploads/2022/05/vdental-e1652789946855.png\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:19:32\"\n    },\n    \"clilab-child::logoDefault__logoSize\": {\n        \"value\": {\n            \"width\": \"\",\n            \"height\": \"\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:19:32\"\n    }\n}','','','trash','closed','closed','','76b5f901-3d79-4d56-8469-ddd934f70c39','','','2022-05-17 12:19:34','2022-05-17 12:19:34','',0,'https://demoweblinks.in/dental/?p=2088',0,'customize_changeset','',0),(2089,1,'2022-05-17 13:54:10','2022-05-17 13:54:10','{\n    \"clilab-child::global__typography__body\": {\n        \"value\": {\n            \"family\": \"Lexend/100,300,regular,500,600,700,800/latin,latin-ext,vietnamese\",\n            \"style\": \"300\",\n            \"color\": \"#000000\",\n            \"size\": \"15px\",\n            \"lineHeight\": \"160%\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:21:21\"\n    },\n    \"clilab-child::header__topbar__text\": {\n        \"value\": \"Hello and Welcome! COVID-19: Advice, updates and vaccine options.mile Everyday.\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 13:54:10\"\n    }\n}','','','trash','closed','closed','','56c2f8fa-e892-453e-b4f6-fc205179dbb4','','','2022-05-17 13:54:10','2022-05-17 13:54:10','',0,'https://demoweblinks.in/dental/?p=2089',0,'customize_changeset','',0),(2090,1,'2022-05-17 12:23:02','2022-05-17 12:23:02','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:23:02','2022-05-17 12:23:02','',28,'https://demoweblinks.in/dental/?p=2090',0,'revision','',0),(2091,1,'2022-05-17 12:23:02','2022-05-17 12:23:02','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:23:02','2022-05-17 12:23:02','',28,'https://demoweblinks.in/dental/?p=2091',0,'revision','',0),(2092,1,'2022-05-17 12:23:02','2022-05-17 12:23:02','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:23:02','2022-05-17 12:23:02','',28,'https://demoweblinks.in/dental/?p=2092',0,'revision','',0),(2093,1,'2022-05-17 12:24:56','0000-00-00 00:00:00','{\n    \"clilab-child::contentBottom__widgets__layout\": {\n        \"value\": {\n            \"columns\": 1,\n            \"layout\": {\n                \"1\": [\n                    12\n                ],\n                \"2\": [\n                    6,\n                    6\n                ],\n                \"3\": [\n                    4,\n                    4,\n                    4\n                ],\n                \"4\": [\n                    3,\n                    3,\n                    3,\n                    3\n                ]\n            }\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:24:56\"\n    }\n}','','','auto-draft','closed','closed','','59f9781e-9b0c-42dc-9ba1-1e7dfbe59deb','','','2022-05-17 12:24:56','0000-00-00 00:00:00','',0,'https://demoweblinks.in/dental/?p=2093',0,'customize_changeset','',0),(2094,1,'2022-05-17 12:27:11','2022-05-17 12:27:11','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:27:11','2022-05-17 12:27:11','',28,'https://demoweblinks.in/dental/?p=2094',0,'revision','',0),(2095,1,'2022-05-17 12:27:11','2022-05-17 12:27:11','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>Medical Services of The Specialties</h3>		\n		<p>At The Clilab Health Services Clinic we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Child Care Assistance\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Dental Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Flu / Vaccine Shot\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Health Checks\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:27:11','2022-05-17 12:27:11','',28,'https://demoweblinks.in/dental/?p=2095',0,'revision','',0),(2096,1,'2022-05-17 12:27:12','2022-05-17 12:27:12','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:27:12','2022-05-17 12:27:12','',28,'https://demoweblinks.in/dental/?p=2096',0,'revision','',0),(2097,1,'2022-05-17 12:27:43','2022-05-17 12:27:43','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:27:43','2022-05-17 12:27:43','',28,'https://demoweblinks.in/dental/?p=2097',0,'revision','',0),(2098,1,'2022-05-17 12:27:43','2022-05-17 12:27:43','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Hearing and Vision\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:27:43','2022-05-17 12:27:43','',28,'https://demoweblinks.in/dental/?p=2098',0,'revision','',0),(2099,1,'2022-05-17 12:27:44','2022-05-17 12:27:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:27:44','2022-05-17 12:27:44','',28,'https://demoweblinks.in/dental/?p=2099',0,'revision','',0),(2100,1,'2022-05-17 12:28:00','2022-05-17 12:28:00','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:28:00','2022-05-17 12:28:00','',28,'https://demoweblinks.in/dental/?p=2100',0,'revision','',0),(2101,1,'2022-05-17 12:28:01','2022-05-17 12:28:01','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Mental Health \n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:28:01','2022-05-17 12:28:01','',28,'https://demoweblinks.in/dental/?p=2101',0,'revision','',0),(2102,1,'2022-05-17 12:28:01','2022-05-17 12:28:01','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:28:01','2022-05-17 12:28:01','',28,'https://demoweblinks.in/dental/?p=2102',0,'revision','',0),(2103,1,'2022-05-17 12:28:48','2022-05-17 12:28:48','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:28:48','2022-05-17 12:28:48','',28,'https://demoweblinks.in/dental/?p=2103',0,'revision','',0),(2104,1,'2022-05-17 12:28:48','2022-05-17 12:28:48','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Pharmacy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:28:48','2022-05-17 12:28:48','',28,'https://demoweblinks.in/dental/?p=2104',0,'revision','',0),(2105,1,'2022-05-17 12:28:49','2022-05-17 12:28:49','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:28:49','2022-05-17 12:28:49','',28,'https://demoweblinks.in/dental/?p=2105',0,'revision','',0),(2106,1,'2022-05-17 12:29:57','2022-05-17 12:29:57','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:29:57','2022-05-17 12:29:57','',28,'https://demoweblinks.in/dental/?p=2106',0,'revision','',0),(2107,1,'2022-05-17 12:29:57','2022-05-17 12:29:57','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Physical Therapy\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Reproductive Health \n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Surgery\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Urgent Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:29:57','2022-05-17 12:29:57','',28,'https://demoweblinks.in/dental/?p=2107',0,'revision','',0),(2108,1,'2022-05-17 12:29:57','2022-05-17 12:29:57','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:29:57','2022-05-17 12:29:57','',28,'https://demoweblinks.in/dental/?p=2108',0,'revision','',0),(2109,1,'2022-05-17 12:35:20','2022-05-17 12:35:20','{\n    \"clilab-child::footer__widgets__layout\": {\n        \"value\": {\n            \"columns\": 3,\n            \"layout\": {\n                \"1\": [\n                    12\n                ],\n                \"2\": [\n                    6,\n                    6\n                ],\n                \"3\": [\n                    4,\n                    4,\n                    4\n                ],\n                \"4\": [\n                    3,\n                    3,\n                    3,\n                    3\n                ]\n            }\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:35:20\"\n    },\n    \"clilab-child::footer__widgets__typography\": {\n        \"value\": {\n            \"color\": \"#201e1e\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:34:34\"\n    },\n    \"clilab-child::footer__widgets__colors\": {\n        \"value\": {\n            \"link\": \"#2c2b2b\",\n            \"linkHover\": \"#403737\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:34:34\"\n    },\n    \"clilab-child::footer__widgets__title\": {\n        \"value\": {\n            \"color\": \"#302626\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:35:20\"\n    }\n}','','','trash','closed','closed','','f252730e-6788-4d50-be29-98dc7db5d8a8','','','2022-05-17 12:35:20','2022-05-17 12:35:20','',0,'https://demoweblinks.in/dental/?p=2109',0,'customize_changeset','',0),(2110,1,'2022-05-17 12:31:10','2022-05-17 12:31:10','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:31:10','2022-05-17 12:31:10','',28,'https://demoweblinks.in/dental/?p=2110',0,'revision','',0),(2111,1,'2022-05-17 12:31:10','2022-05-17 12:31:10','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:31:10','2022-05-17 12:31:10','',28,'https://demoweblinks.in/dental/?p=2111',0,'revision','',0),(2112,1,'2022-05-17 12:31:11','2022-05-17 12:31:11','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:31:11','2022-05-17 12:31:11','',28,'https://demoweblinks.in/dental/?p=2112',0,'revision','',0),(2113,1,'2022-05-17 12:31:58','2022-05-17 12:31:58','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:31:58','2022-05-17 12:31:58','',28,'https://demoweblinks.in/dental/?p=2113',0,'revision','',0),(2114,1,'2022-05-17 12:31:58','2022-05-17 12:31:58','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:31:58','2022-05-17 12:31:58','',28,'https://demoweblinks.in/dental/?p=2114',0,'revision','',0),(2115,1,'2022-05-17 12:31:59','2022-05-17 12:31:59','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:31:59','2022-05-17 12:31:59','',28,'https://demoweblinks.in/dental/?p=2115',0,'revision','',0),(2116,1,'2022-05-17 12:38:15','2022-05-17 12:38:15','{\n    \"clilab-child::footer__copyright__content\": {\n        \"value\": \"Copyright \\u00a9 2022Lab. Designed and Developed by <a href=\\\"#\\\">Amaeka Technologies.</a> only on <a href=\\\"#\\\">Vijaya Dental clinic</a>\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:38:15\"\n    },\n    \"clilab-child::footer__copyright__typography\": {\n        \"value\": {\n            \"color\": \"#342c2c\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:38:15\"\n    },\n    \"clilab-child::footer__copyright__colors\": {\n        \"value\": {\n            \"link\": \"#272525\",\n            \"linkHover\": \"#332c2c\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:38:15\"\n    }\n}','','','trash','closed','closed','','c511bad1-41a7-41d4-85b6-d77c4a063aa6','','','2022-05-17 12:38:15','2022-05-17 12:38:15','',0,'https://demoweblinks.in/dental/?p=2116',0,'customize_changeset','',0),(2117,1,'2022-05-17 12:39:25','2022-05-17 12:39:25','{\n    \"clilab-child::footer__copyright__content\": {\n        \"value\": \"Copyright \\u00a9 2022. Designed and Developed by <a href=\\\"#\\\">Amaeka Technologies.</a> only on <a href=\\\"#\\\">Vijaya Dental clinic</a>\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:39:25\"\n    }\n}','','','trash','closed','closed','','91f367b6-6c7f-4d9c-98b6-7cbadfbe5778','','','2022-05-17 12:39:25','2022-05-17 12:39:25','',0,'https://demoweblinks.in/dental/2022/05/17/91f367b6-6c7f-4d9c-98b6-7cbadfbe5778/',0,'customize_changeset','',0),(2118,1,'2022-05-17 12:44:51','2022-05-17 12:44:51','','test','','inherit','open','closed','','test','','','2022-05-17 12:44:51','2022-05-17 12:44:51','',28,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/test.png',0,'attachment','image/png',0),(2119,1,'2022-05-17 12:45:54','2022-05-17 12:45:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:45:54','2022-05-17 12:45:54','',28,'https://demoweblinks.in/dental/?p=2119',0,'revision','',0),(2120,1,'2022-05-17 12:45:54','2022-05-17 12:45:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:45:54','2022-05-17 12:45:54','',28,'https://demoweblinks.in/dental/?p=2120',0,'revision','',0),(2121,1,'2022-05-17 12:45:54','2022-05-17 12:45:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:45:54','2022-05-17 12:45:54','',28,'https://demoweblinks.in/dental/?p=2121',0,'revision','',0),(2122,1,'2022-05-17 12:47:26','2022-05-17 12:47:26','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:47:26','2022-05-17 12:47:26','',28,'https://demoweblinks.in/dental/?p=2122',0,'revision','',0),(2123,1,'2022-05-17 12:47:27','2022-05-17 12:47:27','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:47:27','2022-05-17 12:47:27','',28,'https://demoweblinks.in/dental/?p=2123',0,'revision','',0),(2124,1,'2022-05-17 12:47:27','2022-05-17 12:47:27','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:47:27','2022-05-17 12:47:27','',28,'https://demoweblinks.in/dental/?p=2124',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2125,1,'2022-05-17 12:48:09','2022-05-17 12:48:09','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:48:09','2022-05-17 12:48:09','',28,'https://demoweblinks.in/dental/?p=2125',0,'revision','',0),(2126,1,'2022-05-17 12:48:09','2022-05-17 12:48:09','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:48:09','2022-05-17 12:48:09','',28,'https://demoweblinks.in/dental/?p=2126',0,'revision','',0),(2127,1,'2022-05-17 12:48:09','2022-05-17 12:48:09','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:48:09','2022-05-17 12:48:09','',28,'https://demoweblinks.in/dental/?p=2127',0,'revision','',0),(2128,1,'2022-05-17 12:48:43','2022-05-17 12:48:43','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:48:43','2022-05-17 12:48:43','',28,'https://demoweblinks.in/dental/?p=2128',0,'revision','',0),(2129,1,'2022-05-17 12:48:43','2022-05-17 12:48:43','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:48:43','2022-05-17 12:48:43','',28,'https://demoweblinks.in/dental/?p=2129',0,'revision','',0),(2130,1,'2022-05-17 12:48:43','2022-05-17 12:48:43','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:48:43','2022-05-17 12:48:43','',28,'https://demoweblinks.in/dental/?p=2130',0,'revision','',0),(2131,1,'2022-05-17 12:50:57','2022-05-17 12:50:57','{\n    \"clilab-child::contentBottom__widgets__typography\": {\n        \"value\": {\n            \"color\": \"#282424\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 12:50:57\"\n    }\n}','','','trash','closed','closed','','e8be5ea1-8486-4ddf-964e-5917f45a1a71','','','2022-05-17 12:50:57','2022-05-17 12:50:57','',0,'https://demoweblinks.in/dental/2022/05/17/e8be5ea1-8486-4ddf-964e-5917f45a1a71/',0,'customize_changeset','',0),(2132,1,'2022-05-17 12:51:29','2022-05-17 12:51:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:51:29','2022-05-17 12:51:29','',28,'https://demoweblinks.in/dental/?p=2132',0,'revision','',0),(2133,1,'2022-05-17 12:51:29','2022-05-17 12:51:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:51:29','2022-05-17 12:51:29','',28,'https://demoweblinks.in/dental/?p=2133',0,'revision','',0),(2134,1,'2022-05-17 12:51:29','2022-05-17 12:51:29','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>The Vijaya clinic is full of professionalism, modern equipment, very friendly staff. Doctor took care of my teeth competently and brought back a wide smile on my face. I heartily recommend!</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:51:29','2022-05-17 12:51:29','',28,'https://demoweblinks.in/dental/?p=2134',0,'revision','',0),(2135,1,'2022-05-17 12:52:19','2022-05-17 12:52:19','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>The Vijaya clinic is full of professionalism, modern equipment, very friendly staff. Doctor took care of my teeth competently and brought back a wide smile on my face. I heartily recommend!</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:52:19','2022-05-17 12:52:19','',28,'https://demoweblinks.in/dental/?p=2135',0,'revision','',0),(2136,1,'2022-05-17 12:52:19','2022-05-17 12:52:19','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>The Vijaya clinic is full of professionalism, modern equipment, very friendly staff. Doctor took care of my teeth competently and brought back a wide smile on my face. I heartily recommend!</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:52:19','2022-05-17 12:52:19','',28,'https://demoweblinks.in/dental/?p=2136',0,'revision','',0),(2137,1,'2022-05-17 12:52:20','2022-05-17 12:52:20','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:52:20','2022-05-17 12:52:20','',28,'https://demoweblinks.in/dental/?p=2137',0,'revision','',0),(2138,1,'2022-05-17 12:55:06','2022-05-17 12:55:06','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:55:06','2022-05-17 12:55:06','',28,'https://demoweblinks.in/dental/?p=2138',0,'revision','',0),(2139,1,'2022-05-17 12:55:06','2022-05-17 12:55:06','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:55:06','2022-05-17 12:55:06','',28,'https://demoweblinks.in/dental/?p=2139',0,'revision','',0),(2140,1,'2022-05-17 12:55:06','2022-05-17 12:55:06','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:55:06','2022-05-17 12:55:06','',28,'https://demoweblinks.in/dental/?p=2140',0,'revision','',0),(2141,1,'2022-05-17 12:56:45','2022-05-17 12:56:45','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:56:45','2022-05-17 12:56:45','',28,'https://demoweblinks.in/dental/?p=2141',0,'revision','',0),(2142,1,'2022-05-17 12:56:46','2022-05-17 12:56:46','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:56:46','2022-05-17 12:56:46','',28,'https://demoweblinks.in/dental/?p=2142',0,'revision','',0),(2143,1,'2022-05-17 12:56:46','2022-05-17 12:56:46','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:56:46','2022-05-17 12:56:46','',28,'https://demoweblinks.in/dental/?p=2143',0,'revision','',0),(2144,1,'2022-05-17 12:56:55','2022-05-17 12:56:55','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:56:55','2022-05-17 12:56:55','',28,'https://demoweblinks.in/dental/?p=2144',0,'revision','',0),(2145,1,'2022-05-17 12:56:55','2022-05-17 12:56:55','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:56:55','2022-05-17 12:56:55','',28,'https://demoweblinks.in/dental/?p=2145',0,'revision','',0),(2146,1,'2022-05-17 12:56:55','2022-05-17 12:56:55','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:56:55','2022-05-17 12:56:55','',28,'https://demoweblinks.in/dental/?p=2146',0,'revision','',0),(2148,1,'2022-05-17 12:58:03','2022-05-17 12:58:03','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:58:03','2022-05-17 12:58:03','',28,'https://demoweblinks.in/dental/?p=2148',0,'revision','',0),(2149,1,'2022-05-17 12:58:03','2022-05-17 12:58:03','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:58:03','2022-05-17 12:58:03','',28,'https://demoweblinks.in/dental/?p=2149',0,'revision','',0),(2150,1,'2022-05-17 12:58:03','2022-05-17 12:58:03','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:58:03','2022-05-17 12:58:03','',28,'https://demoweblinks.in/dental/?p=2150',0,'revision','',0),(2151,1,'2022-05-17 12:58:20','2022-05-17 12:58:20','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:58:20','2022-05-17 12:58:20','',28,'https://demoweblinks.in/dental/?p=2151',0,'revision','',0),(2152,1,'2022-05-17 12:58:20','2022-05-17 12:58:20','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:58:20','2022-05-17 12:58:20','',28,'https://demoweblinks.in/dental/?p=2152',0,'revision','',0),(2153,1,'2022-05-17 12:58:21','2022-05-17 12:58:21','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 12:58:21','2022-05-17 12:58:21','',28,'https://demoweblinks.in/dental/?p=2153',0,'revision','',0),(2154,1,'2022-05-17 13:00:36','2022-05-17 13:00:36','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:00:36','2022-05-17 13:00:36','',28,'https://demoweblinks.in/dental/?p=2154',0,'revision','',0),(2155,1,'2022-05-17 13:00:36','2022-05-17 13:00:36','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:00:36','2022-05-17 13:00:36','',28,'https://demoweblinks.in/dental/?p=2155',0,'revision','',0),(2156,1,'2022-05-17 13:00:36','2022-05-17 13:00:36','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:00:36','2022-05-17 13:00:36','',28,'https://demoweblinks.in/dental/?p=2156',0,'revision','',0),(2157,1,'2022-05-17 13:01:54','2022-05-17 13:01:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:01:54','2022-05-17 13:01:54','',28,'https://demoweblinks.in/dental/?p=2157',0,'revision','',0),(2158,1,'2022-05-17 13:01:54','2022-05-17 13:01:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:01:54','2022-05-17 13:01:54','',28,'https://demoweblinks.in/dental/?p=2158',0,'revision','',0),(2159,1,'2022-05-17 13:01:54','2022-05-17 13:01:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:01:54','2022-05-17 13:01:54','',28,'https://demoweblinks.in/dental/?p=2159',0,'revision','',0),(2160,1,'2022-05-17 13:02:13','2022-05-17 13:02:13','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:02:13','2022-05-17 13:02:13','',28,'https://demoweblinks.in/dental/?p=2160',0,'revision','',0),(2161,1,'2022-05-17 13:02:13','2022-05-17 13:02:13','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:02:13','2022-05-17 13:02:13','',28,'https://demoweblinks.in/dental/?p=2161',0,'revision','',0),(2162,1,'2022-05-17 13:02:13','2022-05-17 13:02:13','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:02:13','2022-05-17 13:02:13','',28,'https://demoweblinks.in/dental/?p=2162',0,'revision','',0),(2163,1,'2022-05-17 13:04:05','2022-05-17 13:04:05','{\n    \"clilab-child::contentBottom__widgets__typography\": {\n        \"value\": {\n            \"color\": \"#163f7a\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 13:03:38\"\n    },\n    \"clilab-child::contentBottom__widgets__colors\": {\n        \"value\": {\n            \"link\": \"#2d2424\",\n            \"linkHover\": \"#342d2d\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 13:04:05\"\n    },\n    \"clilab-child::contentBottom__widgets__title\": {\n        \"value\": {\n            \"color\": \"#281e1e\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 13:04:05\"\n    }\n}','','','trash','closed','closed','','00780e26-1a5b-4b6b-8213-9576fbabeaae','','','2022-05-17 13:04:05','2022-05-17 13:04:05','',0,'https://demoweblinks.in/dental/?p=2163',0,'customize_changeset','',0),(2164,1,'2022-05-17 13:11:43','2022-05-17 13:11:43','','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2022-05-17 13:11:43','2022-05-17 13:11:43','',0,'https://demoweblinks.in/dental/?p=2164',6,'nav_menu_item','',0),(2165,1,'2022-05-17 13:11:43','2022-05-17 13:11:43','','Privacy Poilicy','','publish','closed','closed','','privacy-poilicy','','','2022-05-17 13:11:43','2022-05-17 13:11:43','',0,'https://demoweblinks.in/dental/?p=2165',7,'nav_menu_item','',0),(2166,1,'2022-05-17 13:15:25','2022-05-17 13:15:25','{\n    \"custom_css[clilab-child]\": {\n        \"value\": \".ctaBox h2 {\\n\\tfont-family:\\\"Fraunces\\\";\\n}\\n.home:not(.off-canvas-left-active) .header-transparent {\\n\\tbackground: rgba(255,255,255,.8);\\n\\tbox-shadow: 0 2px 4px rgba(42,42,42,.1)\\n}\\n#site .elementor-widget-icon-list.elementor-icon-list--layout-inline.elementor-align-center ul li .elementor-icon-list-icon svg {\\n\\twidth: 64px;\\n\\theight: 64px;\\n\\tmargin: 0;\\n}\\n#site .rqform .form-row.radio{\\n\\tcolor:black;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 13:15:25\"\n    }\n}','','','trash','closed','closed','','2dd72645-6341-42dc-bc36-d42be940a079','','','2022-05-17 13:15:25','2022-05-17 13:15:25','',0,'https://demoweblinks.in/dental/2022/05/17/2dd72645-6341-42dc-bc36-d42be940a079/',0,'customize_changeset','',0),(2167,1,'2022-05-17 13:15:25','2022-05-17 13:15:25','.ctaBox h2 {\n	font-family:\"Fraunces\";\n}\n.home:not(.off-canvas-left-active) .header-transparent {\n	background: rgba(255,255,255,.8);\n	box-shadow: 0 2px 4px rgba(42,42,42,.1)\n}\n#site .elementor-widget-icon-list.elementor-icon-list--layout-inline.elementor-align-center ul li .elementor-icon-list-icon svg {\n	width: 64px;\n	height: 64px;\n	margin: 0;\n}\n#site .rqform .form-row.radio{\n	color:black;\n}','clilab-child','','inherit','closed','closed','','89-revision-v1','','','2022-05-17 13:15:25','2022-05-17 13:15:25','',89,'https://demoweblinks.in/dental/?p=2167',0,'revision','',0),(2168,1,'2022-05-17 13:16:21','2022-05-17 13:16:21','{\n    \"custom_css[clilab-child]\": {\n        \"value\": \".ctaBox h2 {\\n\\tfont-family:\\\"Fraunces\\\";\\n}\\n.home:not(.off-canvas-left-active) .header-transparent {\\n\\tbackground: rgba(255,255,255,.8);\\n\\tbox-shadow: 0 2px 4px rgba(42,42,42,.1)\\n}\\n#site .elementor-widget-icon-list.elementor-icon-list--layout-inline.elementor-align-center ul li .elementor-icon-list-icon svg {\\n\\twidth: 64px;\\n\\theight: 64px;\\n\\tmargin: 0;\\n}\\n#site .rqform .form-row.radio{\\n\\tcolor:black;\\n}\\n.wpcf7-list-item-label{\\n\\tcolor:black;\\n}\",\n        \"type\": \"custom_css\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 13:16:21\"\n    }\n}','','','trash','closed','closed','','42a70e49-50d6-4eee-81f7-523c2d9fe3e2','','','2022-05-17 13:16:21','2022-05-17 13:16:21','',0,'https://demoweblinks.in/dental/2022/05/17/42a70e49-50d6-4eee-81f7-523c2d9fe3e2/',0,'customize_changeset','',0),(2169,1,'2022-05-17 13:16:21','2022-05-17 13:16:21','.ctaBox h2 {\n	font-family:\"Fraunces\";\n}\n.home:not(.off-canvas-left-active) .header-transparent {\n	background: rgba(255,255,255,.8);\n	box-shadow: 0 2px 4px rgba(42,42,42,.1)\n}\n#site .elementor-widget-icon-list.elementor-icon-list--layout-inline.elementor-align-center ul li .elementor-icon-list-icon svg {\n	width: 64px;\n	height: 64px;\n	margin: 0;\n}\n#site .rqform .form-row.radio{\n	color:black;\n}\n.wpcf7-list-item-label{\n	color:black;\n}','clilab-child','','inherit','closed','closed','','89-revision-v1','','','2022-05-17 13:16:21','2022-05-17 13:16:21','',89,'https://demoweblinks.in/dental/?p=2169',0,'revision','',0),(2170,1,'2022-05-17 13:26:13','2022-05-17 13:26:13','','dentist-PNG-759x1024','','inherit','open','closed','','dentist-png-759x1024','','','2022-05-17 13:26:13','2022-05-17 13:26:13','',28,'https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png',0,'attachment','image/png',0),(2171,1,'2022-05-17 13:26:49','2022-05-17 13:26:49','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:26:49','2022-05-17 13:26:49','',28,'https://demoweblinks.in/dental/?p=2171',0,'revision','',0),(2172,1,'2022-05-17 13:26:49','2022-05-17 13:26:49','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"575\" height=\"728\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14.png 575w, https://demoweblinks.in/dental/wp-content/uploads/2021/08/image-from-rawpixel-id-3228523-png-1-14-237x300.png 237w\" sizes=\"(max-width: 575px) 100vw, 575px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:26:49','2022-05-17 13:26:49','',28,'https://demoweblinks.in/dental/?p=2172',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (2173,1,'2022-05-17 13:26:49','2022-05-17 13:26:49','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:26:49','2022-05-17 13:26:49','',28,'https://demoweblinks.in/dental/?p=2173',0,'revision','',0),(2175,1,'2022-05-17 13:30:16','2022-05-17 13:30:16','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:30:16','2022-05-17 13:30:16','',28,'https://demoweblinks.in/dental/?p=2175',0,'revision','',0),(2176,1,'2022-05-17 13:30:16','2022-05-17 13:30:16','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:30:16','2022-05-17 13:30:16','',28,'https://demoweblinks.in/dental/?p=2176',0,'revision','',0),(2177,1,'2022-05-17 13:30:16','2022-05-17 13:30:16','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:30:16','2022-05-17 13:30:16','',28,'https://demoweblinks.in/dental/?p=2177',0,'revision','',0),(2178,1,'2022-05-17 13:35:54','2022-05-17 13:35:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:35:54','2022-05-17 13:35:54','',28,'https://demoweblinks.in/dental/?p=2178',0,'revision','',0),(2179,1,'2022-05-17 13:35:54','2022-05-17 13:35:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:35:54','2022-05-17 13:35:54','',28,'https://demoweblinks.in/dental/?p=2179',0,'revision','',0),(2180,1,'2022-05-17 13:35:54','2022-05-17 13:35:54','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:35:54','2022-05-17 13:35:54','',28,'https://demoweblinks.in/dental/?p=2180',0,'revision','',0),(2181,1,'2022-05-17 13:36:17','2022-05-17 13:36:17','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:17','2022-05-17 13:36:17','',28,'https://demoweblinks.in/dental/?p=2181',0,'revision','',0),(2182,1,'2022-05-17 13:36:17','2022-05-17 13:36:17','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:17','2022-05-17 13:36:17','',28,'https://demoweblinks.in/dental/?p=2182',0,'revision','',0),(2183,1,'2022-05-17 13:36:17','2022-05-17 13:36:17','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:17','2022-05-17 13:36:17','',28,'https://demoweblinks.in/dental/?p=2183',0,'revision','',0),(2184,1,'2022-05-17 13:36:32','2022-05-17 13:36:32','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:32','2022-05-17 13:36:32','',28,'https://demoweblinks.in/dental/?p=2184',0,'revision','',0),(2185,1,'2022-05-17 13:36:32','2022-05-17 13:36:32','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:32','2022-05-17 13:36:32','',28,'https://demoweblinks.in/dental/?p=2185',0,'revision','',0),(2186,1,'2022-05-17 13:36:32','2022-05-17 13:36:32','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:32','2022-05-17 13:36:32','',28,'https://demoweblinks.in/dental/?p=2186',0,'revision','',0),(2187,1,'2022-05-17 13:36:51','2022-05-17 13:36:51','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:51','2022-05-17 13:36:51','',28,'https://demoweblinks.in/dental/?p=2187',0,'revision','',0),(2188,1,'2022-05-17 13:36:51','2022-05-17 13:36:51','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:51','2022-05-17 13:36:51','',28,'https://demoweblinks.in/dental/?p=2188',0,'revision','',0),(2189,1,'2022-05-17 13:36:52','2022-05-17 13:36:52','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:36:52','2022-05-17 13:36:52','',28,'https://demoweblinks.in/dental/?p=2189',0,'revision','',0),(2190,1,'2022-05-17 13:37:09','2022-05-17 13:37:09','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:37:09','2022-05-17 13:37:09','',28,'https://demoweblinks.in/dental/?p=2190',0,'revision','',0),(2191,1,'2022-05-17 13:37:09','2022-05-17 13:37:09','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:37:09','2022-05-17 13:37:09','',28,'https://demoweblinks.in/dental/?p=2191',0,'revision','',0),(2192,1,'2022-05-17 13:37:09','2022-05-17 13:37:09','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:37:09','2022-05-17 13:37:09','',28,'https://demoweblinks.in/dental/?p=2192',0,'revision','',0),(2193,1,'2022-05-17 13:39:30','2022-05-17 13:38:58',' ','','','publish','closed','closed','','2193','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',0,'https://demoweblinks.in/dental/?p=2193',5,'nav_menu_item','',0),(2194,1,'2022-05-17 13:39:30','2022-05-17 13:39:30',' ','','','publish','closed','closed','','2194','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',0,'https://demoweblinks.in/dental/?p=2194',6,'nav_menu_item','',0),(2195,1,'2022-05-17 13:39:30','2022-05-17 13:39:30',' ','','','publish','closed','closed','','2195','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',0,'https://demoweblinks.in/dental/?p=2195',7,'nav_menu_item','',0),(2196,1,'2022-05-17 13:39:30','2022-05-17 13:39:30',' ','','','publish','closed','closed','','2196','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',0,'https://demoweblinks.in/dental/?p=2196',8,'nav_menu_item','',0),(2197,1,'2022-05-17 13:39:30','2022-05-17 13:39:30',' ','','','publish','closed','closed','','2197','','','2022-05-17 13:39:30','2022-05-17 13:39:30','',351,'https://demoweblinks.in/dental/?p=2197',9,'nav_menu_item','',0),(2198,1,'2022-05-17 13:40:23','0000-00-00 00:00:00','{\n    \"widget_nav_menu[1]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YToyOntzOjg6Im5hdl9tZW51IjtpOjUxO3M6NzoiY2xhc3NlcyI7czoxMToibWVudS1zdHlsZTEiO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"2617fc5fd1126da76b163d6f9cbfe5d4\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 13:40:23\"\n    }\n}','','','auto-draft','closed','closed','','c70d41be-64a1-42f7-b081-94f47dceef13','','','2022-05-17 13:40:23','0000-00-00 00:00:00','',0,'https://demoweblinks.in/dental/?p=2198',0,'customize_changeset','',0),(2200,1,'2022-05-17 13:49:44','2022-05-17 13:49:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:49:44','2022-05-17 13:49:44','',28,'https://demoweblinks.in/dental/?p=2200',0,'revision','',0),(2201,1,'2022-05-17 13:49:44','2022-05-17 13:49:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Clilab Health<br> Services Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Get Directions and Wayfinding\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:49:44','2022-05-17 13:49:44','',28,'https://demoweblinks.in/dental/?p=2201',0,'revision','',0),(2202,1,'2022-05-17 13:49:44','2022-05-17 13:49:44','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:49:44','2022-05-17 13:49:44','',28,'https://demoweblinks.in/dental/?p=2202',0,'revision','',0),(2203,1,'2022-05-17 13:52:42','2022-05-17 13:52:42','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:52:42','2022-05-17 13:52:42','',28,'https://demoweblinks.in/dental/?p=2203',0,'revision','',0),(2204,1,'2022-05-17 13:52:42','2022-05-17 13:52:42','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“As always, Alyssa was great. I love her as my provider. I have been going to for about a year now and will only see her.”</p>\n							                  <h4>Mrs. Linda</h4><p>London, UK</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:52:42','2022-05-17 13:52:42','',28,'https://demoweblinks.in/dental/?p=2204',0,'revision','',0),(2205,1,'2022-05-17 13:52:42','2022-05-17 13:52:42','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:52:42','2022-05-17 13:52:42','',28,'https://demoweblinks.in/dental/?p=2205',0,'revision','',0),(2206,1,'2022-05-17 13:54:31','2022-05-17 13:54:31','{\n    \"clilab-child::header__topbar__text\": {\n        \"value\": \"Hello and Welcome! Smile Everyday.\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2022-05-17 13:54:31\"\n    }\n}','','','trash','closed','closed','','56b4114f-3c1f-417a-b2bf-ce7c9ff5789f','','','2022-05-17 13:54:31','2022-05-17 13:54:31','',0,'https://demoweblinks.in/dental/2022/05/17/56b4114f-3c1f-417a-b2bf-ce7c9ff5789f/',0,'customize_changeset','',0),(2207,1,'2022-05-17 13:56:28','2022-05-17 13:56:28','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:56:28','2022-05-17 13:56:28','',28,'https://demoweblinks.in/dental/?p=2207',0,'revision','',0),(2208,1,'2022-05-17 13:56:28','2022-05-17 13:56:28','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the CliLab Clinic?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the CliLab?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:56:28','2022-05-17 13:56:28','',28,'https://demoweblinks.in/dental/?p=2208',0,'revision','',0),(2209,1,'2022-05-17 13:56:28','2022-05-17 13:56:28','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the Vijaya Dental Care?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the Vijaya?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 13:56:28','2022-05-17 13:56:28','',28,'https://demoweblinks.in/dental/?p=2209',0,'revision','',0),(2210,1,'2022-05-17 14:06:22','2022-05-17 14:06:22','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the Vijaya Dental Care?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the Vijaya?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 14:06:22','2022-05-17 14:06:22','',28,'https://demoweblinks.in/dental/?p=2210',0,'revision','',0),(2211,1,'2022-05-17 14:06:22','2022-05-17 14:06:22','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the Vijaya Dental Care?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the Vijaya?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 14:06:22','2022-05-17 14:06:22','',28,'https://demoweblinks.in/dental/?p=2211',0,'revision','',0),(2212,1,'2022-05-17 14:06:23','2022-05-17 14:06:23','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										About Us\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the Vijaya Dental Care?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the Vijaya?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-revision-v1','','','2022-05-17 14:06:23','2022-05-17 14:06:23','',28,'https://demoweblinks.in/dental/?p=2212',0,'revision','',0),(2213,1,'2022-05-17 14:19:05','2022-05-17 14:19:05','[rev_slider alias=\"homepage-2\" slidertitle=\"Homepage 2\"][/rev_slider]		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Welcome to Vijaya Dental Care</h6>		\n			<h3>Vijaya Dental Care is a Modern Dental Office that Meets Your Highest Expectations.<br>\n<br>\nFor the sake of your healthy and beautiful smile, we offer comprehensive dental care at affordable prices. All treatments are performed using the highest class specialized equipment. For your convenience, we’ve also created the option of taking x-rays in our office including a pantomogram and dental tomography.\n</h3>		\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/book-an-appointment/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>event create 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"23\" cy=\"24\" r=\"7\" stroke=\"#2a2a2a\"></circle><line x1=\"23\" y1=\"21\" x2=\"23\" y2=\"27\" stroke=\"#2a2a2a\"></line><line x1=\"20\" y1=\"24\" x2=\"26\" y2=\"24\" stroke=\"#2a2a2a\"></line><line x1=\"9\" y1=\"1\" x2=\"9\" y2=\"5\"></line><line x1=\"23\" y1=\"1\" x2=\"23\" y2=\"5\"></line><line data-cap=\"butt\" x1=\"31\" y1=\"11\" x2=\"1\" y2=\"11\" stroke-linecap=\"butt\"></line><polyline points=\"12 29 1 29 1 5 31 5 31 15\"></polyline></g></svg>						\n										Schedule Appt\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										Find a Doctor\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/about/team/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"32\" width=\"32\" viewBox=\"0 0 32 32\"><title>stethoscope</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#2a2a2a\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><polyline points=\" 10,21 10,31 27,31 27,23 \" stroke=\"#2a2a2a\"></polyline><circle cx=\"27\" cy=\"19\" r=\"4\" stroke=\"#2a2a2a\"></circle><path d=\"M15,2h3.8 c0.6,0,1.1,0.5,1,1.2l-2.6,16.2c-0.2,1-1,1.7-2,1.7H5.7c-1,0-1.8-0.7-2-1.7L1.2,3.2C1.1,2.5,1.6,2,2.2,2H6\"></path><line x1=\"6\" y1=\"1\" x2=\"6\" y2=\"4\"></line><line x1=\"15\" y1=\"1\" x2=\"15\" y2=\"4\"></line></g></svg>						\n										About Us\n											</a>\n									</li>\n						</ul>\n			<h3>We Care - Our Specialties</h3>		\n		<p>At The Vijaya Dental Care we offer the most advanced and<br />effective bespoke treatment packages to suit your needs</p>		\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>child</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M25.29,26.731a3.982,3.982,0,0,0-7.1,1.123\" stroke=\"#029967\"></path><path d=\"M38.71,26.731a3.982,3.982,0,0,1,7.1,1.123\" stroke=\"#029967\"></path><path d=\"M32,47a9,9,0,0,0,9-9H23A9,9,0,0,0,32,47Z\" stroke=\"#029967\"></path><path d=\"M56,24a5.954,5.954,0,0,0-1.336.161,23.972,23.972,0,0,0-45.328,0A6,6,0,1,0,8,36c.121,0,.235-.029.354-.036a23.971,23.971,0,0,0,47.292,0c.119.007.233.036.354.036a6,6,0,0,0,0-12Z\"></path><path data-cap=\"butt\" d=\"M32,8a5,5,0,1,0,3.536,8.536\" stroke-linecap=\"butt\"></path></g></svg>						\n										Dental Implants\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>tooth</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M58,13.8 C58,9.6,54.6,6,50.2,6C48,6,43.4,7.3,39.4,8.6C37,9.4,34.5,9.8,32,9.8c-2.5,0-5-0.4-7.4-1.2C20.6,7.3,16,6,13.8,6 C9.4,6,6,9.6,6,13.8c0,4.2,2.6,13,2.6,13L6,53c0,2.7,2.2,5,5,5c1.8,0,3.2-1.2,4.3-2.5l10-11.9c1.8-2.2,4.1-3.9,6.7-3.9 s4.8,1.6,6.7,3.9l10,11.9c1,1.3,2.5,2.5,4.3,2.5c2.7,0,5-2.2,5-5l-2.6-26.2C55.4,26.8,58,18,58,13.8z\"></path><path d=\"M24.2,19.3 c2.6,0.6,5.2,0.9,7.8,0.9c2.6,0,5.3-0.3,7.8-0.9\" stroke=\"#029967\"></path></g></svg>						\n										Root Canal Treatment\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>syringe</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"18\" y1=\"46\" x2=\"4\" y2=\"60\" stroke=\"#029967\"></line><line x1=\"32\" y1=\"20\" x2=\"36\" y2=\"24\" stroke=\"#029967\"></line><line x1=\"26\" y1=\"26\" x2=\"30\" y2=\"30\" stroke=\"#029967\"></line><line x1=\"20\" y1=\"32\" x2=\"24\" y2=\"36\" stroke=\"#029967\"></line><line data-cap=\"butt\" x1=\"49\" y1=\"21\" x2=\"59\" y2=\"11\" stroke-linecap=\"butt\"></line><line data-cap=\"butt\" x1=\"53\" y1=\"5\" x2=\"43\" y2=\"15\" stroke-linecap=\"butt\"></line><line x1=\"32\" y1=\"4\" x2=\"60\" y2=\"32\"></line><line data-cap=\"butt\" x1=\"50\" y1=\"2\" x2=\"62\" y2=\"14\" stroke-linecap=\"butt\"></line><polyline points=\"52,24 24,52 12,40 40,12 \"></polyline></g></svg>						\n										Braces and Aligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hands heart</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M14,62V58L3.444,45.685A6,6,0,0,1,2,41.78V23.5A3.5,3.5,0,0,1,5.5,20h0A3.5,3.5,0,0,1,9,23.5H9V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M26,62V48.485a6,6,0,0,0-1.757-4.242L14.5,34.5a3.535,3.535,0,0,0-5,0h0a3.535,3.535,0,0,0,0,5h0L17,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M50,62V58L60.556,45.685A6,6,0,0,0,62,41.78V23.5A3.5,3.5,0,0,0,58.5,20h0A3.5,3.5,0,0,0,55,23.5h0V35.13\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M38,62V48.485a6,6,0,0,1,1.757-4.242L49.5,34.5a3.535,3.535,0,0,1,5,0h0a3.535,3.535,0,0,1,0,5h0L47,47\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M46,10.5A7.5,7.5,0,0,0,32,6.769a7.495,7.495,0,1,0-11.485,9.323L32,27.607,43.485,16.092A7.47,7.47,0,0,0,46,10.5Z\" stroke=\"#029967\"></path></g></svg>						\n										Clear Alligners\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>dont touch eyes</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line x1=\"44.811\" y1=\"46.611\" x2=\"47.008\" y2=\"43.713\"></line><path d=\"M43.832,30.037a11.993,11.993,0,1,0-13.79,13.789\"></path><path d=\"M53.758,42.342a57.082,57.082,0,0,0,7.7-8.658,2.9,2.9,0,0,0,.008-3.373C58.024,25.487,47.077,12,32,12,16.8,12,5.923,25.507,2.531,30.32a2.9,2.9,0,0,0,.008,3.353C5.957,38.481,16.914,52,32,52a26.354,26.354,0,0,0,9.1-1.666\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M61,47.8,47.213,37.41a7,7,0,1,0-8.426,11.18L55.255,61\"></path><line x1=\"4\" y1=\"60\" x2=\"60\" y2=\"4\" stroke=\"#029967\"></line></g></svg>						\n										Dental Fillings\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>brain</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M32,10.2 C32,5.7,28.3,2,23.8,2c-3.6,0-6.6,2.3-7.7,5.5c-0.2,0-0.3,0-0.5,0C8.1,7.5,2,13.6,2,21.1c0,3.7,1.5,7,3.8,9.5C3.5,32,2,34.5,2,37.5 c0,2.8,1.4,5.2,3.5,6.7c-0.4,1.3-0.7,2.8-0.7,4.2c0,7.5,6.1,13.6,13.6,13.6S32,55.9,32,48.4V28\"></path><path d=\"M32,10.2 C32,5.7,35.7,2,40.2,2c3.6,0,6.6,2.3,7.7,5.5c0.2,0,0.3,0,0.5,0c7.5,0,13.6,6.1,13.6,13.6c0,3.7-1.5,7-3.8,9.5 c2.3,1.4,3.8,4,3.8,6.9c0,2.8-1.4,5.2-3.5,6.7c0.4,1.3,0.7,2.8,0.7,4.2c0,7.5-6.1,13.6-13.6,13.6S32,55.9,32,48.4\"></path><path d=\"M15.6,34.7 c-3.9,0-7.4-1.6-9.9-4.2\"></path><path d=\"M48.4,34.7 c3.9,0,7.4-1.6,9.9-4.2\"></path><path d=\"M32,10.2 c0,4.5-3.5,7.8-8,7.8\"></path><path d=\"M32,10.2 c0,4.5,3.5,7.8,8,7.8\"></path><path d=\"M21.1,42.4 c-3.2-1.1-5.4-4.2-5.4-7.7c0-2.4,1.1-4.6,2.7-6.1\"></path><path d=\"M42.9,42.4 c3.2-1.1,5.4-4.2,5.4-7.7c0-2.4-1.1-4.6-2.7-6.1\"></path></g></svg>						\n										Wisdom teeth Removal\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>medication</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M42.828,31A3.414,3.414,0,0,1,38,26.172L44.172,20A3.414,3.414,0,0,1,49,24.828Z\" stroke=\"#029967\"></path><line x1=\"41.086\" y1=\"23.086\" x2=\"45.914\" y2=\"27.914\" stroke=\"#029967\"></line><path d=\"M26.172,20A3.414,3.414,0,0,0,31,15.172L24.828,9A3.414,3.414,0,0,0,20,13.828Z\" stroke=\"#029967\"></path><line x1=\"27.914\" y1=\"12.086\" x2=\"23.086\" y2=\"16.914\" stroke=\"#029967\"></line><path d=\"M49,41l6.331-3.8a4.415,4.415,0,0,1,5.983,1.4h0A4.413,4.413,0,0,1,60.3,44.475L49,53.229a6,6,0,0,1-2.218,1.076L26.527,59.368a6,6,0,0,1-4.714-.783L7,49H2V33l9.958-1.66a6,6,0,0,1,3.859.651L25,37l14.911.785A4.315,4.315,0,0,1,44,42.094h0a4.316,4.316,0,0,1-3.886,4.3L24,48\"></path><circle cx=\"41\" cy=\"7\" r=\"5\" stroke=\"#029967\"></circle><line x1=\"44.536\" y1=\"3.464\" x2=\"37.464\" y2=\"10.536\" stroke=\"#029967\"></line></g></svg>						\n										Teeth Removal\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>wheelchair 2</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path data-cap=\"butt\" d=\"M36.421,35H50a5,5,0,0,1,5,5V53\" stroke-linecap=\"butt\"></path><polyline data-cap=\"butt\" points=\"19.456 27.19 16 3 8 3\" stroke-linecap=\"butt\"></polyline><path data-cap=\"butt\" d=\"M18.286,19H45a5,5,0,0,1,5,5V35\" stroke-linecap=\"butt\"></path><circle cx=\"22\" cy=\"44\" r=\"17\" stroke=\"#029967\"></circle><circle cx=\"22\" cy=\"44\" r=\"4\" stroke=\"#029967\"></circle><circle cx=\"55\" cy=\"57\" r=\"4\" stroke=\"#029967\"></circle></g></svg>						\n										Dentures\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>pregnant woman</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"31\" cy=\"8\" r=\"6\" data-cap=\"butt\" stroke-linecap=\"butt\"></circle><polyline points=\"28 53 28 62 34 62 36 53\" data-cap=\"butt\" stroke-linecap=\"butt\"></polyline><path d=\"M22.772,37.294,20,53H46l-2.563-8.716A8.99,8.99,0,0,0,39.01,29.233l-2.165-7.362A4,4,0,0,0,33.007,19H28.883a4,4,0,0,0-3.795,2.735L22,31l10,6\" stroke=\"#029967\"></path></g></svg>						\n										Bridges and Crowns\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>lungs infection</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M24,36.678V11S3,15,3,39v15.98a6,6,0,0,0,7.648,5.769L15.3,59.42A12,12,0,0,0,24,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M58.868,27A32.187,32.187,0,0,1,61,39v15.98a6,6,0,0,1-7.648,5.769L48.7,59.42A12,12,0,0,1,40,47.882V43\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><path d=\"M40,36.678V11a24.415,24.415,0,0,1,5,1.719\" data-cap=\"butt\" stroke-linecap=\"butt\"></path><line x1=\"32\" y1=\"3\" x2=\"32\" y2=\"28\"></line><path d=\"M47,41S35,35,32,28c-3,7-15,13-15,13\"></path><circle cx=\"54\" cy=\"18\" r=\"4\" stroke=\"#029967\"></circle><line x1=\"54\" y1=\"11\" x2=\"54\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"61\" y1=\"18\" x2=\"58\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"54\" y1=\"25\" x2=\"54\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"47\" y1=\"18\" x2=\"50\" y2=\"18\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"15.172\" x2=\"58\" y2=\"14\" stroke=\"#029967\"></line><line x1=\"56.828\" y1=\"20.828\" x2=\"58\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"20.828\" x2=\"50\" y2=\"22\" stroke=\"#029967\"></line><line x1=\"51.172\" y1=\"15.172\" x2=\"50\" y2=\"14\" stroke=\"#029967\"></line><circle cx=\"52.5\" cy=\"33.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"49.5\" cy=\"49.5\" r=\"2.5\" stroke=\"#029967\"></circle><circle cx=\"54.5\" cy=\"43.5\" r=\"1.5\" stroke=\"none\" fill=\"#029967\"></circle></g></svg>						\n										Teeth Whitening\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/service-single/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>hospital 34</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"32\" r=\"30\"></circle><polygon points=\" 48,26 38,26 38,16 26,16 26,26 16,26 16,38 26,38 26,48 38,48 38,38 48,38 \" stroke=\"#029967\"></polygon></g></svg>						\n										Smile Makeover\n											</a>\n									</li>\n								<li>\n											<a href=\"https://cli.21lab.co/services/\">\n							<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"48\" width=\"48\" viewBox=\"0 0 48 48\"><title>menu 5</title><g fill=\"#029967\"><circle data-color=\"color-2\" cx=\"24\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"6\" cy=\"24\" r=\"4\"></circle><circle fill=\"#029967\" cx=\"42\" cy=\"24\" r=\"4\"></circle></g></svg>						\n										More Services\n											</a>\n									</li>\n						</ul>\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"759\" height=\"1024\" src=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1.png 759w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-222x300.png 222w, https://demoweblinks.in/dental/wp-content/uploads/2022/05/dentist-PNG-759x1024-1-600x809.png 600w\" sizes=\"(max-width: 759px) 100vw, 759px\" />															\n			<h6>Why choose Us</h6>		\n			<h2>What Makes Vijaya Dental Care<br> Unique?</h2>		\n		<p><strong>Our Experience</strong></p><p>No matter what your concern, your first stop is one of our accessible, expert health professionals.</p>		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}</style>		\n		<p><strong>Caring Commitment</strong></p><p>We take our commitment to be your health care partner seriously. As primary care providers</p>		\n		<p><strong>Great Facilities</strong></p><p>Our building design, furnishings, and equipment are all selected to promote and aid in health and healing.</p>		\n			<a href=\"#\" role=\"button\">\n						Discover Services We Provide\n					</a>\n			<h6>Need some advice from our experts?</h6>		\n			<h3>Request a Call Back Today Now!</h3>		\n		<p>We will make a single attempt to contact you from a withheld number, usually within 24 hours of your request.</p>		\n			<img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/face.png\" alt=\"Contact\"><ul><li> <a href=\"#\"  >The quickest way to get in contact is to telephone 03457 30 40 30</a></li></ul>		\n		[contact-form-7 id=\"701\" title=\"Request a Call Back\"]		\n							                <p>“I was very pleased with Vijaya Dental Care. The care that I was given by the nursing staff was as if I was one of their family members.”</p>\n							                  <h4>Mrs. Linda</h4><p>Kadavantra, Kochi</p>\n							                <p>“I have now come to the end of the 12 months of membership &amp; I have been very happy with the services provided.”</p>\n							                  <h4>Mr Wagner</h4><p>New York</p>\n							                <p>“This was my first consultation, Alaa was exceedingly professional and and gave the best possible consultation.”</p>\n							                  <h4>Shakira</h4><p>London</p>\n			<h3>Recognition And Awards</h3>		\n		We’re honored to be recognized for quality of care, safety and environmental <br>excellence. Some of the awards we’ve received include:		\n			<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a1-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a2-13.jpeg\" alt=\"Best Use of Technology In Medical Tourism\" /><figcaption>Best Use of Technology In Medical Tourism</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a3-13.jpeg\" alt=\"International  Hospital of The Year\" /><figcaption>International  Hospital of The Year</figcaption></figure><figure><img src=\"https://demoweblinks.in/dental/wp-content/uploads/2021/08/a4-13.jpeg\" alt=\"Excellence In Customer Service\" /><figcaption>Excellence In Customer Service</figcaption></figure>			\n			<h6>HERE ARE SOME HELPFUL LINKS TO GET YOU ANSWERS FASTER.</h6>		\n			<a href=\"https://cli.21lab.co/contact/\" role=\"button\">\n						Need a Help?\n					</a>\n			<link rel=\"stylesheet\" href=\"https://demoweblinks.in/dental/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<a href=\"https://cli.21lab.co/book-an-appointment/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>event create</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><line data-cap=\"butt\" x1=\"60\" y1=\"23\" x2=\"4\" y2=\"23\" stroke-linecap=\"butt\"></line><path d=\"M29,56H9a5,5,0,0,1-5-5V14A5,5,0,0,1,9,9H55a5,5,0,0,1,5,5V34\"></path><line x1=\"17\" y1=\"3\" x2=\"17\" y2=\"15\"></line><line x1=\"47\" y1=\"3\" x2=\"47\" y2=\"15\"></line><line x1=\"47\" y1=\"45\" x2=\"47\" y2=\"53\" stroke=\"#029967\"></line><line x1=\"43\" y1=\"49\" x2=\"51\" y2=\"49\" stroke=\"#029967\"></line><circle cx=\"47\" cy=\"49\" r=\"12\" stroke=\"#029967\"></circle></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/book-an-appointment/\" >\n						New to the Vijaya Dental Care?​					</a>\n				</h3>\n									<p>\n						To Book a Consultation or Find out More About any of our Treatments.\n<a href=\"#\">Book a Consultation</a>					</p>\n				<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>telephone</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><circle cx=\"32\" cy=\"44\" r=\"8\" stroke=\"#029967\"></circle><path d=\"M19,29,5,47v8a5,5,0,0,0,5,5H54a5,5,0,0,0,5-5V47L45,29Z\"></path><path d=\"M22.944,18.858,22.3,13.036a38.609,38.609,0,0,1,19.4,0l-.647,5.822A3.109,3.109,0,0,0,43.032,22.1l9.587,3.691a3.109,3.109,0,0,0,3.8-1.328L60.57,17.4a3.125,3.125,0,0,0-.81-4.074,46.121,46.121,0,0,0-55.521,0,3.126,3.126,0,0,0-.81,4.073l4.157,7.07a3.109,3.109,0,0,0,3.8,1.326L20.968,22.1A3.112,3.112,0,0,0,22.944,18.858Z\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"#\" >\n						Already a Patient of the Vijaya?					</a>\n				</h3>\n									<p>\n						If you Have any Queries, Need to Book or Cancel a Treatment.\n<a href=\"#\">Please Call: 0167 62 9888</a>					</p>\n				<a href=\"https://cli.21lab.co/about/#faq\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"64\" width=\"64\" viewBox=\"0 0 64 64\"><title>virtual assistant 2 1</title><g stroke-linecap=\"square\" stroke-width=\"2\" fill=\"none\" stroke=\"#029967\" stroke-linejoin=\"miter\" stroke-miterlimit=\"10\"><path d=\"M9,56V49.9a4,4,0,0,1,1.959-3.444C12.86,45.328,16.309,44,22,44s9.14,1.328,11.041,2.454A4,4,0,0,1,35,49.9V56\"></path><path d=\"M15,31a7,7,0,0,1,14,0c0,3.866-3.134,8-7,8S15,34.866,15,31Z\"></path><polyline points=\"28 14 2 14 2 56 56 56 56 30\"></polyline><path d=\"M34,7V19a5,5,0,0,0,5,5h1v6l10-6h7a5,5,0,0,0,5-5V7a5,5,0,0,0-5-5H39A5,5,0,0,0,34,7Z\" stroke=\"#029967\"></path></g></svg>				</a>\n				<h3>\n					<a href=\"https://cli.21lab.co/about/#faq\" >\n						Frequently Asked Questions					</a>\n				</h3>\n									<p>\n						Here You’ll Find Some of The Most Common Questions\n<a href=\"#\">See FAQs About CliLab</a>					</p>','Home 2','','inherit','closed','closed','','28-autosave-v1','','','2022-05-17 14:19:06','2022-05-17 14:19:06','',28,'https://demoweblinks.in/dental/?p=2213',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css`
--

DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci,
  `hover` longtext COLLATE utf8_unicode_ci,
  `advanced` longtext COLLATE utf8_unicode_ci,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css`
--

LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_css_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci,
  `hover` longtext COLLATE utf8_unicode_ci,
  `advanced` longtext COLLATE utf8_unicode_ci,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `handle_index` (`handle`(64))
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css_bkp`
--

LOCK TABLES `wp_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `wp_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black',NULL,NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red',NULL,NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white',NULL,NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage',NULL,NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}');
/*!40000 ALTER TABLE `wp_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8_unicode_ci NOT NULL,
  `params` text COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations`
--

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

--
-- Table structure for table `wp_revslider_layer_animations_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8_unicode_ci NOT NULL,
  `params` text COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `wp_revslider_navigations`
--

DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations`
--

LOCK TABLES `wp_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_navigations` DISABLE KEYS */;
INSERT INTO `wp_revslider_navigations` VALUES (1,'Clilab','clilab','arrows','','','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":\"\",\"presets\":\"\",\"version\":\"6.0.0\"}');
/*!40000 ALTER TABLE `wp_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_navigations_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8_unicode_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations_bkp`
--

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

--
-- Table structure for table `wp_revslider_sliders`
--

DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `alias` tinytext COLLATE utf8_unicode_ci,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci,
  `type` varchar(191) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders`
--

LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'Homepage','home','{\"addOns\":[],\"version\":\"6.4.11\",\"shortcode\":\"[rev_slider alias=\\\"home\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1340px\",\"n\":\"1024px\",\"t\":778,\"m\":480},\"height\":{\"d\":\"700px\",\"n\":\"590px\",\"t\":\"380px\",\"m\":\"310px\"},\"editorCache\":{\"d\":700,\"n\":560,\"t\":380,\"m\":310},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"javascript\":\"\",\"css\":\"rs-layer {font-family: inherit !important}\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":\"0px\",\"y\":\"0px\",\"color\":\"#12e09b\",\"bgcolor\":\"#ffffff\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":true,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":false,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":true,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"15px\",\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"15px\",\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#029967\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"1.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"1\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"2.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"2\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"3.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"3\",\"type\":\"layer\"}]},{\"alias\":\"Headline Text\",\"v\":\"#2a2a2a\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"1.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"1\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"2.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"2\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"3.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"3\",\"type\":\"layer\"}]},{\"alias\":\"Content Text\",\"v\":\"#2a2a2a\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"1.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"1\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"1.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"1\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"2.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"2\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"2.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"2\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"3.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"3\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"3.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"3\",\"type\":\"layer\"}]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"home\\\"][\\/rev_slider]\"}','{\"version\":\"6.4.11\"}',''),(2,'Homepage 2','homepage-2','{\"addOns\":[],\"version\":\"6.5.21\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"homepage-2\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1340px\",\"n\":\"1024px\",\"t\":778,\"m\":480},\"height\":{\"d\":\"580px\",\"n\":\"590px\",\"t\":\"380px\",\"m\":\"310px\"},\"editorCache\":{\"d\":579.988000000000056388671509921550750732421875,\"n\":560,\"t\":380,\"m\":310},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"rs-layer {font-family: inherit !important}\",\"javascript\":\"\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":\"0px\",\"y\":\"0px\",\"color\":\"#12e09b\",\"bgcolor\":\"#ffffff\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":true,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":false,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":true,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"15px\",\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"15px\",\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"allowPageScroll\":false,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#029967\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"4.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"4\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"5.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"5\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"6.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"6\",\"type\":\"layer\"}]},{\"alias\":\"Headline Text\",\"v\":\"#2a2a2a\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"4.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"4\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"5.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"5\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"6.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"6\",\"type\":\"layer\"}]},{\"alias\":\"Content Text\",\"v\":\"#2a2a2a\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"4.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"4\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"4.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"4\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"5.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"5\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"5.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"5\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"6.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"6\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"6.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"6\",\"type\":\"layer\"}]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"homepage-2\\\"][\\/rev_slider]\"}','{\"version\":\"6.5.21\"}',''),(3,'Homepage 3','homepage-3','{\"addOns\":[],\"version\":\"6.4.11\",\"shortcode\":\"[rev_slider alias=\\\"homepage-3\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":\"1340px\",\"n\":\"1024px\",\"t\":778,\"m\":480},\"height\":{\"d\":\"580px\",\"n\":\"590px\",\"t\":\"380px\",\"m\":\"250px\"},\"editorCache\":{\"d\":580,\"n\":560,\"t\":380,\"m\":250},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"javascript\":\"\",\"css\":\"rs-layer {font-family: inherit !important}\"},\"carousel\":{\"justify\":false,\"justifyMaxWidth\":false,\"snap\":true,\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"false\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"top\",\"horizontal\":\"left\",\"x\":\"0px\",\"y\":\"0px\",\"color\":\"#12e09b\",\"bgcolor\":\"#ffffff\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":true,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":false,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":true,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"15px\",\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"15px\",\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3000\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#029967\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"14.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"14\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"15.layers.2.idle.color.d.v\",\"layer\":2,\"slide\":\"15\",\"type\":\"layer\"}]},{\"alias\":\"Headline Text\",\"v\":\"#2a2a2a\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"14.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"14\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"15.layers.3.idle.color.d.v\",\"layer\":3,\"slide\":\"15\",\"type\":\"layer\"}]},{\"alias\":\"Content Text\",\"v\":\"#2a2a2a\",\"ref\":[{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"14.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"14\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"14.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"14\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"7.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"7\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"8.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"8\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"15.layers.4.idle.color.d.v\",\"layer\":4,\"slide\":\"15\",\"type\":\"layer\"},{\"inpname\":\"layerTextColor\",\"r\":\"15.layers.5.idle.color.d.v\",\"layer\":5,\"slide\":\"15\",\"type\":\"layer\"}]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"homepage-3\\\"][\\/rev_slider]\"}','{\"version\":\"6.4.11\"}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_sliders_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `alias` tinytext COLLATE utf8_unicode_ci,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci,
  `type` varchar(191) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`(8))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders_bkp`
--

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

--
-- Table structure for table `wp_revslider_slides`
--

DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides`
--

LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/slider02.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1680,\"imageHeight\":700,\"imageRatio\":2.399999999999999911182158029987476766109466552734375,\"imageId\":1736},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"o\":\"outin\",\"in\":{\"o\":\"0\",\"sx\":\"0.85\",\"sy\":\"0.85\"},\"out\":{\"a\":false,\"y\":\"100%\"},\"title\":\"*south*\",\"main\":\"basic\",\"group\":\"zoomslideout\",\"preset\":\"scaleupfrombottom\"},\"version\":\"6.4.11\"}','{\"0\":{\"text\":\"\",\"alias\":\"Gradient-top\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"267px\"},\"t\":{\"v\":\"202px\"},\"m\":{\"v\":\"124px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"covermode\":\"fullwidth\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"speed\":\"0\",\"endWithSlide\":false,\"frameLength\":0}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":9000,\"endWithSlide\":true,\"frameLength\":1000}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"15\"},\"t\":{\"v\":\"11\"},\"m\":{\"v\":\"6\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&180&,&colors&:[{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"1\":{\"text\":\"\",\"alias\":\"Gradient-bottom\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"267px\"},\"t\":{\"v\":\"202px\"},\"m\":{\"v\":\"124px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"covermode\":\"fullwidth\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":8},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"speed\":\"0\",\"endWithSlide\":false,\"frameLength\":0}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":9000,\"endWithSlide\":true,\"frameLength\":1000}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"15\"},\"t\":{\"v\":\"11\"},\"m\":{\"v\":\"6\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&0&,&colors&:[{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"2\":{\"text\":\"Your Health Our Care\",\"alias\":\"Sub\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"247px\",\"e\":true},\"n\":{\"v\":\"197px\",\"e\":true},\"t\":{\"v\":\"199px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#029967\",\"e\":true},\"n\":{\"v\":\"#029967\"},\"t\":{\"v\":\"#029967\"},\"m\":{\"v\":\"#029967\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"lowercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Provide <span class=\\\"hl\\\">comprehensive<\\/span> healthcare services\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"303px\",\"e\":true}},\"height\":{\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"298px\",\"e\":true},\"n\":{\"v\":\"238px\",\"e\":true},\"t\":{\"v\":\"230px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":400,\"startRelative\":400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"v\":\"600\"},\"m\":{\"v\":\"600\"}},\"lineHeight\":{\"d\":{\"v\":\"54px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"We offer a wide range of medical and healthcare services\",\"alias\":\"Des\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"357px\",\"e\":true},\"n\":{\"v\":\"272px\"},\"t\":{\"v\":\"206px\"},\"m\":{\"v\":\"127px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"y\":{\"d\":{\"v\":\"421px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"255px\"},\"m\":{\"v\":\"157px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"19px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"8px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"5\":{\"text\":\"<div class=\\\"grBtn\\\">\\n<a class=\\\"button has-icon primary\\\" href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a><a href=\\\"#\\\" class=\\\"accent\\\"><i class=\\\"iconlab iconlab-phone-call-1\\\"><\\/i>Call: 7 (465) 474-01-01<\\/a>\\n<\\/div>\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"222px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"523px\",\"e\":true},\"n\":{\"v\":\"418px\",\"e\":true},\"t\":{\"v\":\"317px\"},\"m\":{\"v\":\"195px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":1200,\"startRelative\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"4px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.4.11\"}'),(2,1,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/slider01.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1680,\"imageHeight\":700,\"imageRatio\":2.399999999999999911182158029987476766109466552734375,\"imageId\":1737},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"o\":\"outin\",\"in\":{\"o\":\"0\",\"sx\":\"0.85\",\"sy\":\"0.85\"},\"out\":{\"a\":false,\"y\":\"100%\"},\"title\":\"*south*\",\"main\":\"basic\",\"group\":\"zoomslideout\",\"preset\":\"scaleupfrombottom\"},\"version\":\"6.4.11\"}','{\"0\":{\"text\":\"\",\"alias\":\"Gradient-top\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"267px\"},\"t\":{\"v\":\"202px\"},\"m\":{\"v\":\"124px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"covermode\":\"fullwidth\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"speed\":\"0\",\"endWithSlide\":false,\"frameLength\":0}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":1000}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"15\"},\"t\":{\"v\":\"11\"},\"m\":{\"v\":\"6\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&180&,&colors&:[{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"1\":{\"text\":\"\",\"alias\":\"Gradient-bottom\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"267px\"},\"t\":{\"v\":\"202px\"},\"m\":{\"v\":\"124px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"covermode\":\"fullwidth\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":8},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"speed\":\"0\",\"endWithSlide\":false,\"frameLength\":0}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":1000}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"15\"},\"t\":{\"v\":\"11\"},\"m\":{\"v\":\"6\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&0&,&colors&:[{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"2\":{\"text\":\"Your Health Our Care\",\"alias\":\"Sub\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"247px\",\"e\":true},\"n\":{\"v\":\"188px\"},\"t\":{\"v\":\"199px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#029967\",\"e\":true},\"n\":{\"v\":\"#029967\"},\"t\":{\"v\":\"#029967\"},\"m\":{\"v\":\"#029967\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"lowercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Provide <span class=\\\"hl\\\">comprehensive<\\/span> healthcare services\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"303px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"298px\",\"e\":true},\"n\":{\"v\":\"227px\"},\"t\":{\"v\":\"230px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":400,\"startRelative\":400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"v\":\"600\"},\"m\":{\"v\":\"600\"}},\"lineHeight\":{\"d\":{\"v\":\"54px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"We offer a wide range of medical and healthcare services\",\"alias\":\"Des\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"357px\",\"e\":true},\"n\":{\"v\":\"272px\"},\"t\":{\"v\":\"206px\"},\"m\":{\"v\":\"127px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"421px\",\"e\":true},\"n\":{\"v\":\"321px\"},\"t\":{\"v\":\"243px\"},\"m\":{\"v\":\"149px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"19px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"8px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"5\":{\"text\":\"<div class=\\\"grBtn\\\">\\n<a class=\\\"button has-icon primary\\\" href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\\n<\\/div>\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"523px\",\"e\":true},\"n\":{\"v\":\"399px\"},\"t\":{\"v\":\"303px\"},\"m\":{\"v\":\"186px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":1200,\"startRelative\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"4px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.4.11\"}'),(3,1,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/slider03.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1680,\"imageHeight\":700,\"imageRatio\":2.399999999999999911182158029987476766109466552734375,\"imageId\":1739},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"o\":\"outin\",\"in\":{\"o\":\"0\",\"sx\":\"0.85\",\"sy\":\"0.85\"},\"out\":{\"a\":false,\"y\":\"100%\"},\"title\":\"*south*\",\"main\":\"basic\",\"group\":\"zoomslideout\",\"preset\":\"scaleupfrombottom\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.4.11\"}','{\"0\":{\"text\":\"\",\"alias\":\"Gradient-top\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"267px\"},\"t\":{\"v\":\"202px\"},\"m\":{\"v\":\"124px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"covermode\":\"fullwidth\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"speed\":\"0\",\"endWithSlide\":false,\"frameLength\":0}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":1000}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"15\"},\"t\":{\"v\":\"11\"},\"m\":{\"v\":\"6\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&180&,&colors&:[{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"1\":{\"text\":\"\",\"alias\":\"Gradient-bottom\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"100%\",\"e\":true},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}},\"height\":{\"d\":{\"v\":\"350px\",\"e\":true},\"n\":{\"v\":\"267px\"},\"t\":{\"v\":\"202px\"},\"m\":{\"v\":\"124px\"}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"covermode\":\"fullwidth\",\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":8},\"behavior\":{\"baseAlign\":\"slide\"},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"speed\":\"0\",\"endWithSlide\":false,\"frameLength\":0}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"speed\":\"1000\",\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":1000}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"15\"},\"t\":{\"v\":\"11\"},\"m\":{\"v\":\"6\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&0&,&colors&:[{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&top&},{&r&:255,&g&:255,&b&:255,&a&:1,&position&:0,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&bottom&},{&r&:255,&g&:255,&b&:255,&a&:0,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"shape\"},\"2\":{\"text\":\"Your Health Our Care\",\"alias\":\"Sub\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"303px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"247px\",\"e\":true},\"n\":{\"v\":\"197px\",\"e\":true},\"t\":{\"v\":\"199px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#029967\",\"e\":true},\"n\":{\"v\":\"#029967\"},\"t\":{\"v\":\"#029967\"},\"m\":{\"v\":\"#029967\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"lowercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Provide <span class=\\\"hl\\\">comprehensive<\\/span> healthcare services\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"303px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"298px\",\"e\":true},\"n\":{\"v\":\"238px\",\"e\":true},\"t\":{\"v\":\"230px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":400,\"startRelative\":400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"v\":\"600\"},\"m\":{\"v\":\"600\"}},\"lineHeight\":{\"d\":{\"v\":\"54px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"We offer a wide range of medical and\\n healthcare services\",\"alias\":\"Des\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"222px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"y\":{\"d\":{\"v\":\"421px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"255px\"},\"m\":{\"v\":\"157px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"19px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"8px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"5\":{\"text\":\"<div class=\\\"aligncenter\\\"><div class=\\\"grBtn\\\"><a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"accent\\\"><i class=\\\"iconlab iconlab-phone-call-1\\\"><\\/i>Book an Appointment<\\/a><\\/div><\\/div>\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"222px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"y\":{\"d\":{\"v\":\"523px\",\"e\":true},\"n\":{\"v\":\"418px\",\"e\":true},\"t\":{\"v\":\"317px\"},\"m\":{\"v\":\"195px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":1200,\"startRelative\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"4px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.4.11\"}'),(4,2,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/slider_02-1-1.jpg\",\"imageId\":1969,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":600,\"imageRatio\":3.20000000000000017763568394002504646778106689453125},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false,\"y\":\"100%\"},\"title\":\"*north*\",\"main\":\"basic\",\"group\":\"remove\",\"preset\":\"slideremoveup\"}}','{\"2\":{\"text\":\"Providing Best Dental Care\",\"alias\":\"Sub\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true}},\"height\":{\"d\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"127px\",\"e\":true},\"n\":{\"v\":\"197px\",\"e\":true},\"t\":{\"v\":\"199px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\"},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#029967\",\"e\":true},\"n\":{\"v\":\"#029967\"},\"t\":{\"v\":\"#029967\"},\"m\":{\"v\":\"#029967\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"36\",\"e\":true},\"n\":{\"v\":\"27\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\",\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36\",\"e\":true},\"n\":{\"v\":\"27\"},\"t\":{\"v\":\"20\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"lowercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Complete <span class=\\\"hl\\\">Oral Healthcare<\\/span> Starts Here\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"303px\",\"e\":true}},\"height\":{\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"178px\",\"e\":true},\"n\":{\"v\":\"238px\",\"e\":true},\"t\":{\"v\":\"230px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\",\"e\":true},\"t\":{\"v\":\"600\",\"e\":true},\"m\":{\"v\":\"600\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"54px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"4\":{\"text\":\"We offer a wide range of Dental services\",\"alias\":\"Des\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"357px\",\"e\":true},\"n\":{\"v\":\"272px\"},\"t\":{\"v\":\"206px\"},\"m\":{\"v\":\"127px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"y\":{\"d\":{\"v\":\"301px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"255px\"},\"m\":{\"v\":\"157px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\",\"e\":true},\"m\":{\"v\":\"300\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"19px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"8px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"5\":{\"text\":\"<div class=\\\"grBtn\\\">\\n<a class=\\\"button has-icon primary\\\" href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" style=\\\"color:white;\\\"><i class=\\\"iconlab iconlab-a-edit\\\"  style=\\\"color:white;\\\"><\\/i>Book an Appointment<\\/a><a href=\\\"#\\\" class=\\\"accent\\\"><i class=\\\"iconlab iconlab-phone-call-1\\\"><\\/i>Call: 7 (465) 474-01-01<\\/a>\\n<\\/div>\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"222px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"403px\",\"e\":true},\"n\":{\"v\":\"418px\",\"e\":true},\"t\":{\"v\":\"317px\"},\"m\":{\"v\":\"195px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"4px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\",\"e\":true},\"t\":{\"v\":\"500\",\"e\":true},\"m\":{\"v\":\"500\",\"e\":true}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.21\"}'),(5,2,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/slider1-2.jpg\",\"imageId\":1972,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":1000,\"imageRatio\":1.9199999999999999289457264239899814128875732421875},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false,\"y\":\"100%\"},\"title\":\"*north*\",\"main\":\"basic\",\"group\":\"remove\",\"preset\":\"slideremoveup\"}}','{\"2\":{\"text\":\"Your Health Our Care\",\"alias\":\"Sub\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"127px\",\"e\":true},\"n\":{\"v\":\"97px\"},\"t\":{\"v\":\"199px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#029967\",\"e\":true},\"n\":{\"v\":\"#029967\"},\"t\":{\"v\":\"#029967\"},\"m\":{\"v\":\"#029967\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"lowercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Provide <span class=\\\"hl\\\">comprehensive<\\/span> healthcare services\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"303px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"178px\",\"e\":true},\"n\":{\"v\":\"136px\"},\"t\":{\"v\":\"230px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"v\":\"600\"},\"m\":{\"v\":\"600\"}},\"lineHeight\":{\"d\":{\"v\":\"54px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"4\":{\"text\":\"We offer a wide range of medical and healthcare services\",\"alias\":\"Des\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"357px\",\"e\":true},\"n\":{\"v\":\"272px\"},\"t\":{\"v\":\"206px\"},\"m\":{\"v\":\"127px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"301px\",\"e\":true},\"n\":{\"v\":\"230px\"},\"t\":{\"v\":\"174px\"},\"m\":{\"v\":\"107px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"19px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"8px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"5\":{\"text\":\"<div class=\\\"grBtn\\\">\\n<a class=\\\"button has-icon primary\\\" href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\"><i class=\\\"iconlab iconlab-a-edit\\\"><\\/i>Book an Appointment<\\/a>\\n<\\/div>\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"403px\",\"e\":true},\"n\":{\"v\":\"307px\"},\"t\":{\"v\":\"233px\"},\"m\":{\"v\":\"143px\"}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"4px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.21\"}'),(6,2,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2022\\/05\\/home-slide-2.jpg\",\"imageId\":1971,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":606,\"imageRatio\":3.16831683168316846632706074160523712635040283203125},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false,\"y\":\"100%\"},\"title\":\"*north*\",\"main\":\"basic\",\"group\":\"remove\",\"preset\":\"slideremoveup\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}}}','{\"2\":{\"text\":\"Your Health Our Care\",\"alias\":\"Sub\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"303px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"127px\",\"e\":true},\"n\":{\"v\":\"197px\",\"e\":true},\"t\":{\"v\":\"199px\",\"e\":true},\"m\":{\"v\":\"175px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#029967\",\"e\":true},\"n\":{\"v\":\"#029967\"},\"t\":{\"v\":\"#029967\"},\"m\":{\"v\":\"#029967\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"36px\",\"e\":true},\"n\":{\"v\":\"27px\"},\"t\":{\"v\":\"20px\"},\"m\":{\"v\":\"18px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"lowercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Provide <span class=\\\"hl\\\">comprehensive<\\/span> healthcare services\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"303px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"178px\",\"e\":true},\"n\":{\"v\":\"238px\",\"e\":true},\"t\":{\"v\":\"230px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"27px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"v\":\"600\"},\"m\":{\"v\":\"600\"}},\"lineHeight\":{\"d\":{\"v\":\"54px\",\"e\":true},\"n\":{\"v\":\"41px\"},\"t\":{\"v\":\"31px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"type\":\"text\"},\"4\":{\"text\":\"We offer a wide range of medical and\\n healthcare services\",\"alias\":\"Des\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"222px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"y\":{\"d\":{\"v\":\"301px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"255px\"},\"m\":{\"v\":\"157px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"19px\"},\"t\":{\"v\":\"14px\"},\"m\":{\"v\":\"8px\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"5\":{\"text\":\"<div class=\\\"aligncenter\\\"><div class=\\\"grBtn\\\"><a href=\\\"https:\\/\\/cli.21lab.co\\/book-an-appointment\\/\\\" class=\\\"accent\\\"><i class=\\\"iconlab iconlab-phone-call-1\\\"><\\/i>Book an Appointment<\\/a><\\/div><\\/div>\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"222px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"y\":{\"d\":{\"v\":\"403px\",\"e\":true},\"n\":{\"v\":\"418px\",\"e\":true},\"t\":{\"v\":\"317px\"},\"m\":{\"v\":\"195px\"}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"power4.inOut\",\"speed\":1200,\"start\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"sfx\":{\"effect\":\"blocktobottom\"}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"4px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[],\"inactive_actions\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.21\"}'),(7,3,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"image\":\"\",\"imageLib\":\"medialibrary\",\"imageWidth\":1680,\"imageHeight\":700,\"imageRatio\":2.399999999999999911182158029987476766109466552734375},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"o\":\"outin\",\"in\":{\"o\":\"0\",\"sx\":\"0.85\",\"sy\":\"0.85\"},\"out\":{\"a\":false,\"y\":\"100%\"},\"title\":\"*south*\",\"main\":\"basic\",\"group\":\"zoomslideout\",\"preset\":\"scaleupfrombottom\"},\"version\":\"6.4.11\",\"layout\":{\"bg\":{\"image\":\"\"}}}','{\"0\":{\"text\":\"\",\"alias\":\"Image-0\",\"uid\":0,\"media\":{\"imageUrl\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/bg3.jpg\",\"loaded\":true,\"imageLib\":\"medialibrary\",\"imageId\":1740},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"625px\",\"e\":true},\"n\":{\"v\":\"477px\"},\"t\":{\"v\":\"362px\"},\"m\":{\"v\":\"150px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"499px\",\"e\":true},\"n\":{\"v\":\"381px\"},\"t\":{\"v\":\"289px\"},\"m\":{\"v\":\"120px\",\"e\":true}},\"originalWidth\":1250,\"originalHeight\":998,\"aspectRatio\":{\"d\":{\"v\":1.25250501002004011041890407796017825603485107421875},\"n\":{\"v\":1.25250501002004011041890407796017825603485107421875},\"t\":{\"v\":1.25250501002004011041890407796017825603485107421875},\"m\":{\"v\":1.25250501002004011041890407796017825603485107421875}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"30px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":14},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8500,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"15\"},\"t\":{\"v\":\"11\"},\"m\":{\"v\":\"6\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"1\":{\"text\":\"\",\"alias\":\"Image-1\",\"uid\":1,\"media\":{\"imageUrl\":\"https:\\/\\/demoweblinks.in\\/dental\\/wp-content\\/uploads\\/2021\\/08\\/favico.png\",\"loaded\":true,\"imageLib\":\"medialibrary\",\"imageId\":1741},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"247px\",\"e\":true},\"n\":{\"v\":\"188px\"},\"t\":{\"v\":\"142px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"247px\",\"e\":true},\"n\":{\"v\":\"188px\"},\"t\":{\"v\":\"142px\"},\"m\":{\"v\":\"60px\",\"e\":true}},\"originalWidth\":512,\"originalHeight\":512,\"aspectRatio\":{\"d\":{\"v\":1},\"n\":{\"v\":1},\"t\":{\"v\":1},\"m\":{\"v\":1}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"125px\",\"e\":true},\"n\":{\"v\":\"95px\"},\"t\":{\"v\":\"102px\",\"e\":true},\"m\":{\"v\":\"60px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\"}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"rotationY\":\"360deg\"},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"ease\":\"back.out\",\"speed\":500,\"start\":500,\"startRelative\":500,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":500}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":500},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"15\"},\"t\":{\"v\":\"11\"},\"m\":{\"v\":\"6\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"2\":{\"text\":\"Don\'t Panic\",\"alias\":\"Sub\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"82px\",\"e\":true},\"n\":{\"v\":\"197px\",\"e\":true},\"t\":{\"v\":\"124px\",\"e\":true},\"m\":{\"v\":\"75px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7800,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#029967\",\"e\":true},\"n\":{\"v\":\"#029967\"},\"t\":{\"v\":\"#029967\"},\"m\":{\"v\":\"#029967\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"36px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"48px\",\"e\":true},\"n\":{\"v\":\"36px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"if you are an F0 or F1.\\u270c\",\"alias\":\"Title\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"500px\",\"e\":true},\"n\":{\"v\":\"382px\"},\"t\":{\"v\":\"309px\",\"e\":true},\"m\":{\"v\":\"233px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"148px\",\"e\":true},\"n\":{\"v\":\"238px\",\"e\":true},\"t\":{\"v\":\"175px\",\"e\":true},\"m\":{\"v\":\"110px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":400,\"startRelative\":400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7400,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"64px\",\"e\":true},\"n\":{\"v\":\"48px\"},\"t\":{\"v\":\"44px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"600\",\"e\":true},\"n\":{\"v\":\"600\"},\"t\":{\"v\":\"600\"},\"m\":{\"v\":\"600\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"53px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"We\'ve deploying a monitoring service for families or Patients which are F0 or F1 and are isolating themselves at home.\",\"alias\":\"Des\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"357px\",\"e\":true},\"n\":{\"v\":\"272px\"},\"t\":{\"v\":\"206px\"},\"m\":{\"v\":\"127px\"}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"v\":\"13px\"}},\"y\":{\"d\":{\"v\":\"316px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"255px\"},\"m\":{\"v\":\"157px\"}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":800,\"startRelative\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"13px\"},\"t\":{\"v\":\"9px\"},\"m\":{\"v\":\"5px\"}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"22px\"},\"t\":{\"v\":\"16px\"},\"m\":{\"v\":\"9px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"5\":{\"text\":\"<div class=\\\"grBtn\\\"><a href=\\\"#\\\" class=\\\"accent\\\"><i class=\\\"iconlab iconlab-phone-call-1\\\"><\\/i>We are here to assist you.<\\/a><\\/div>\",\"alias\":\"Button\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"624px\",\"e\":true},\"n\":{\"v\":\"476px\"},\"t\":{\"v\":\"361px\"},\"m\":{\"v\":\"222px\"}},\"height\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"22px\"},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"463px\",\"e\":true},\"n\":{\"v\":\"418px\",\"e\":true},\"t\":{\"v\":\"317px\"},\"m\":{\"v\":\"195px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"-100%\"},\"n\":{\"v\":\"-100%\"},\"t\":{\"v\":\"-100%\"},\"m\":{\"v\":\"-100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":1200,\"startRelative\":1200,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":6600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1200},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#2a2a2a\",\"e\":true},\"n\":{\"v\":\"#2a2a2a\"},\"t\":{\"v\":\"#2a2a2a\"},\"m\":{\"v\":\"#2a2a2a\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"inherit\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"11px\"},\"t\":{\"v\":\"8px\"},\"m\":{\"v\":\"4px\"}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"lineHeight\":{\"n\":{\"v\":\"19\"},\"t\":{\"v\":\"14\"},\"m\":{\"v\":\"8\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false,\"t\":false},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.4.11\"}');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides_bkp`
--

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

--
-- Table structure for table `wp_revslider_static_slides`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides`
--

LOCK TABLES `wp_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_static_slides` VALUES (1,1,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.5.4\",\"bg\":{\"image\":\"\"}}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"}}','{\"version\":\"6.5.4\"}'),(2,2,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.5.4\",\"bg\":{\"image\":\"\"}}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"}}','{\"version\":\"6.5.4\"}'),(3,3,'{\"static\":{\"isstatic\":true},\"runtime\":{\"collapsedGroups\":[]},\"title\":\"Global Layers\",\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"bullets\":{\"presets\":{\"bullet-size\":\"12\",\"bullet-size-def\":false,\"bullet-bg-top\":\"#999999\",\"bullet-bg-top-def\":false,\"bullet-bg-bottom\":\"#e1e1e1\",\"bullet-bg-bottom-def\":false,\"border-color\":\"#e5e5e5\",\"border-color-def\":false,\"border-size\":\"3\",\"border-size-def\":false,\"hover-bullet-bg\":\"#666666\",\"hover-bullet-bg-def\":false}}},\"version\":\"6.5.4\",\"bg\":{\"image\":\"\"}}','{\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":0},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":0},\"text\":\"\"}}','{\"version\":\"6.5.4\"}');
/*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_static_slides_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8_unicode_ci NOT NULL,
  `layers` longtext COLLATE utf8_unicode_ci NOT NULL,
  `settings` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides_bkp`
--

LOCK TABLES `wp_revslider_static_slides_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_static_slides_bkp` 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),(37,18,0),(37,27,0),(37,28,0),(40,17,0),(40,24,0),(45,20,0),(45,25,0),(45,29,0),(48,16,0),(48,23,0),(48,35,0),(53,20,0),(53,32,0),(53,33,0),(58,20,0),(58,31,0),(61,16,0),(61,23,0),(65,21,0),(65,26,0),(65,30,0),(70,17,0),(70,23,0),(70,34,0),(79,4,0),(79,8,0),(79,9,0),(79,13,0),(79,39,0),(79,40,0),(79,48,0),(84,53,0),(85,53,0),(86,53,0),(87,53,0),(102,2,0),(102,8,0),(102,42,0),(105,2,0),(105,41,0),(105,44,0),(105,49,0),(109,2,0),(109,8,0),(109,38,0),(109,41,0),(109,44,0),(109,49,0),(112,4,0),(112,9,0),(112,36,0),(112,37,0),(112,39,0),(112,45,0),(112,47,0),(112,50,0),(123,4,0),(123,9,0),(123,39,0),(123,40,0),(123,43,0),(123,48,0),(126,4,0),(126,8,0),(126,9,0),(126,14,0),(126,36,0),(126,37,0),(126,39,0),(126,45,0),(126,47,0),(126,50,0),(134,2,0),(134,14,0),(134,38,0),(134,41,0),(134,44,0),(134,49,0),(138,2,0),(138,43,0),(143,4,0),(143,9,0),(143,39,0),(143,40,0),(143,42,0),(149,4,0),(149,9,0),(149,36,0),(149,37,0),(149,39,0),(149,45,0),(149,47,0),(149,50,0),(156,2,0),(156,13,0),(156,38,0),(163,2,0),(163,38,0),(163,41,0),(163,44,0),(163,49,0),(164,54,0),(165,54,0),(166,54,0),(167,54,0),(168,54,0),(173,54,0),(174,4,0),(174,9,0),(174,44,0),(174,49,0),(189,2,0),(189,14,0),(189,41,0),(192,4,0),(192,8,0),(192,9,0),(192,43,0),(210,55,0),(380,46,0),(423,55,0),(933,51,0),(938,51,0),(939,51,0),(940,51,0),(941,51,0),(1073,51,0),(1074,51,0),(1075,51,0),(1076,51,0),(1077,51,0),(1080,51,0),(1081,51,0),(1082,51,0),(1086,51,0),(1253,52,0),(1254,52,0),(1256,52,0),(1257,52,0),(1258,52,0),(1260,52,0),(1261,54,0),(1262,54,0),(1263,54,0),(1264,54,0),(1265,54,0),(1338,51,0),(1339,51,0),(1340,51,0),(1376,51,0),(1377,51,0),(1381,51,0),(1546,51,0),(1547,54,0),(1548,54,0),(1549,54,0),(1550,54,0),(1551,54,0),(1552,54,0),(1553,54,0),(1640,55,0),(1641,55,0),(1643,51,0),(1735,51,0),(2000,56,0),(2036,56,0),(2164,52,0),(2165,52,0),(2193,53,0),(2194,53,0),(2195,53,0),(2196,53,0),(2197,53,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=57 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,'product_type','',0,8),(3,3,'product_type','',0,0),(4,4,'product_type','',0,8),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,5),(9,9,'product_visibility','',0,8),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,2),(14,14,'product_visibility','',0,3),(15,15,'product_cat','',0,0),(16,16,'category','',0,2),(17,17,'category','',0,2),(18,18,'category','',0,1),(19,19,'category','',0,0),(20,20,'category','',0,3),(21,21,'category','',0,1),(22,22,'post_tag','',0,0),(23,23,'post_tag','',0,3),(24,24,'post_tag','',0,1),(25,25,'post_tag','',0,1),(26,26,'post_tag','',0,1),(27,27,'post_tag','',0,1),(28,28,'post_tag','',0,1),(29,29,'post_tag','',0,1),(30,30,'post_tag','',0,1),(31,31,'post_tag','',0,1),(32,32,'post_tag','',0,1),(33,33,'post_tag','',0,1),(34,34,'post_tag','',0,1),(35,35,'post_tag','',0,1),(36,36,'pa_size','',0,3),(37,37,'pa_size','',0,3),(38,38,'product_cat','',0,4),(39,39,'pa_color','',0,6),(40,40,'pa_color','',0,3),(41,41,'product_cat','',0,5),(42,42,'product_cat','',0,2),(43,43,'product_cat','',0,3),(44,44,'product_cat','',0,5),(45,45,'pa_color','',0,3),(46,46,'elementor_library_type','',0,1),(47,47,'pa_color','',0,3),(48,48,'product_cat','',43,2),(49,49,'product_cat','',0,5),(50,50,'product_cat','',43,3),(51,51,'nav_menu','',0,23),(52,52,'nav_menu','',0,8),(53,53,'nav_menu','',0,9),(54,54,'nav_menu','',0,18),(55,55,'nav_menu','',0,4),(56,56,'elementor_library_type','',0,2);
/*!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,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=54 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 */;
INSERT INTO `wp_termmeta` VALUES (1,36,'order_pa_size','0'),(2,37,'order_pa_size','0'),(3,38,'order','0'),(4,38,'order','0'),(5,38,'order','0'),(6,38,'display_type',''),(7,38,'thumbnail_id','1905'),(8,38,'product_count_product_cat','4'),(9,39,'order_pa_color','0'),(10,40,'order_pa_color','0'),(11,41,'order','0'),(12,41,'order','0'),(13,41,'order','0'),(14,41,'product_count_product_cat','5'),(15,41,'display_type',''),(16,41,'thumbnail_id','1904'),(17,42,'order','0'),(18,42,'order','0'),(19,42,'order','0'),(20,42,'display_type',''),(21,42,'thumbnail_id','1908'),(22,42,'product_count_product_cat','2'),(23,43,'order','0'),(24,43,'order','0'),(25,43,'order','0'),(26,43,'display_type',''),(27,43,'thumbnail_id','1910'),(28,43,'product_count_product_cat','7'),(29,44,'order','0'),(30,44,'order','0'),(31,44,'display_type',''),(32,44,'thumbnail_id','1906'),(33,44,'product_count_product_cat','5'),(34,45,'order_pa_color','0'),(35,47,'order_pa_color','0'),(36,48,'order','0'),(37,48,'order','0'),(38,48,'order','0'),(39,48,'product_count_product_cat','2'),(40,48,'display_type',''),(41,48,'thumbnail_id','1910'),(42,49,'order','0'),(43,49,'order','0'),(44,49,'order','0'),(45,49,'product_count_product_cat','5'),(46,49,'display_type',''),(47,49,'thumbnail_id','1907'),(48,50,'order','0'),(49,50,'order','0'),(50,50,'order','0'),(51,50,'product_count_product_cat','3'),(52,50,'display_type',''),(53,50,'thumbnail_id','1911');
/*!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=57 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,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'COVID-19','covid-19',0),(17,'Dental','dental',0),(18,'Health Tips','health-tips',0),(19,'HealthCare','healthcare',0),(20,'Medicare','medicare',0),(21,'Pharmacy','pharmacy',0),(22,'Alzheimer','alzheimer',0),(23,'Covid-19','covid-19',0),(24,'Dental','dental',0),(25,'Doctor','doctor',0),(26,'Drug','drug',0),(27,'Happy','happy',0),(28,'Healthy','healthy',0),(29,'Medicare','medicare',0),(30,'Pharmacy','pharmacy',0),(31,'Physical Therapy','physical-therapy',0),(32,'Protecting','protecting',0),(33,'Scams','scams',0),(34,'Tongue','tongue',0),(35,'Vaccination','vaccination',0),(36,'21\'\'','21',0),(37,'33\'\'','33',0),(38,'Beauty and Hygiene','beauty-and-hygiene',0),(39,'Black','black',0),(40,'Blue','blue',0),(41,'Drugstore','drugstore',0),(42,'Face Mask','face-mask',0),(43,'Medical Equipment','medical-equipment',0),(44,'Medicines','medicines',0),(45,'Red','red',0),(46,'section','section',0),(47,'Silver','silver',0),(48,'Temperature Gun','temperature-gun',0),(49,'Vitamins','vitamins',0),(50,'Wheelchair','wheelchair',0),(51,'Custom Menu - Off Canvas','custom-menu-off-canvas',0),(52,'Footer Menu','footer-menu',0),(53,'Main Menu','main-menu',0),(54,'Mobile Menu','mobile-menu',0),(55,'Top Menu','top-menu',0),(56,'page','page',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,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','dental-admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','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:\"e5f7f17bef241e8b4359d06bc16ac7f21a5777378f34b982df2766cabd52a7ab\";a:4:{s:10:\"expiration\";i:1652933899;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:f57c:600e:dc41:81b1\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652761099;}s:64:\"ed3aacb85f09a3e5ea6f6f30d82dd6efe97a37b87a625fc322c0f15140fd033c\";a:4:{s:10:\"expiration\";i:1652959820;s:2:\"ip\";s:14:\"111.92.116.196\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36\";s:5:\"login\";i:1652787020;}s:64:\"6dc9e342ac65b0ae8ab179e27a0a012d8b3e2132568abb215b44c12394d756bd\";a:4:{s:10:\"expiration\";i:1653019228;s:2:\"ip\";s:38:\"2409:4073:313:5f6c:3034:1d48:19a3:2bf5\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36\";s:5:\"login\";i:1652846428;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2409:4073:313:5f6c::\";}'),(19,1,'_woocommerce_tracks_anon_id','woo:NK6SHK6rNJexNTrK9xS56DVf'),(20,1,'wc_last_active','1652832000'),(21,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(22,1,'wp_user-settings-time','1652794595'),(24,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(25,1,'nav_menu_recently_edited','51'),(26,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(27,1,'metaboxhidden_nav-menus','a:6:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:21:\"add-post-type-product\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'dental-admin','$P$BtaPQT1IMV7AFV/Sczxarj2LvKVHR/.','dental-admin','brains@amaeka.com','https://demoweblinks.in/dental','2022-05-17 04:17:55','',0,'dental-admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `actioned_text` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonce_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `nonce_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=167 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_note_actions`
--

LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'enable-navigation','Enable in Settings','https://demoweblinks.in/dental/wp-admin/admin.php?page=wc-settings&tab=advanced&section=features','actioned','',NULL,NULL),(2,2,'add-store-details','Add store details','https://demoweblinks.in/dental/wp-admin/admin.php?page=wc-admin&path=/setup-wizard','actioned','',NULL,NULL),(42,38,'notify-refund-returns-page','Edit page','https://demoweblinks.in/dental/wp-admin/post.php?post=14&action=edit','actioned','',NULL,NULL),(82,39,'connect','Connect','?page=wc-addons&section=helper','unactioned','',NULL,NULL),(83,40,'learn_more','Learn More','https://woocommerce.com/checkout-blocks/','actioned','',NULL,NULL),(84,41,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(85,42,'affirm-insight-first-product-and-payment','Yes','','actioned','Thanks for your feedback',NULL,NULL),(86,42,'affirm-insight-first-product-and-payment','No','','actioned','Thanks for your feedback',NULL,NULL),(87,43,'day-after-first-product','Learn more','https://woocommerce.com/document/woocommerce-customizer/?utm_source=inbox&utm_medium=product','actioned','',NULL,NULL),(127,44,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_medium=product','actioned','',NULL,NULL),(128,3,'browse_extensions','Browse extensions','https://demoweblinks.in/dental/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned','',NULL,NULL),(129,4,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned','',NULL,NULL),(130,5,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned','',NULL,NULL),(131,6,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021','actioned','',NULL,NULL),(132,7,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned','',NULL,NULL),(133,8,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned','',NULL,NULL),(134,9,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned','',NULL,NULL),(135,10,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned','',NULL,NULL),(136,11,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned','',NULL,NULL),(137,12,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned','',NULL,NULL),(138,13,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(139,14,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned','',NULL,NULL),(140,15,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned','',NULL,NULL),(141,16,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned','',NULL,NULL),(142,17,'update-wc-subscriptions-3-0-15','View latest version','https://demoweblinks.in/dental/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper','actioned','',NULL,NULL),(143,18,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned','',NULL,NULL),(144,21,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(145,22,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned','',NULL,NULL),(146,23,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(147,23,'dismiss','Dismiss','','actioned','',NULL,NULL),(148,24,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(149,24,'dismiss','Dismiss','','actioned','',NULL,NULL),(150,25,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(151,25,'dismiss','Dismiss','','actioned','',NULL,NULL),(152,26,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned','',NULL,NULL),(153,26,'dismiss','Dismiss','','actioned','',NULL,NULL),(154,27,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned','',NULL,NULL),(155,28,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned','',NULL,NULL),(156,29,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(157,29,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned','',NULL,NULL),(158,30,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned','',NULL,NULL),(159,30,'dismiss','Dismiss','','actioned','',NULL,NULL),(160,31,'pinterest_03_2022_update','Update Instructions','https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned','',NULL,NULL),(161,32,'setup_task_initiative_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned','',NULL,NULL),(162,33,'affirm_q2_2022','Get started for free','https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022','unactioned','',NULL,NULL),(163,34,'setup_task_second_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned','',NULL,NULL),(164,35,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned','',NULL,NULL),(165,36,'wc-admin-EU-consumer-protection','Learn more about these changes','https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance','actioned','',NULL,NULL),(166,37,'googlelistings_multicountrygtm_q22022','Get Google Listings & Ads – free','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022','actioned','',NULL,NULL);
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_notes`
--

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

--
-- Dumping data for table `wp_wc_admin_notes`
--

LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-admin-navigation-nudge','info','en_US','You now have access to the WooCommerce navigation','We’re introducing a new navigation for a more intuitive and improved user experience. You can enable the beta version of the new experience in the Advanced Settings. Enable it now for your store.','{}','unactioned','woocommerce-admin','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(2,'wc-admin-complete-store-details','info','en_US','Add your store details to complete store setup','Complete your store details with important information for setup such as your store’s base address','{}','unactioned','woocommerce-admin','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(3,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(4,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(5,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(6,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(7,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(8,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(9,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(10,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(11,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(12,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(13,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(14,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(15,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(16,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(17,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(18,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(19,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(20,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(21,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(22,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(23,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(24,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(25,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(26,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(27,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(28,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(29,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(30,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(31,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(32,'setup_task_initiative_survey_q2_2022','survey','en_US','We want to know what matters most to you','Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.','{}','unactioned','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(33,'affirm_q2_2022','marketing','en_US','Boost your business with flexible payments','Expand your customer base with smarter payment options for more shoppers. With Affirm,  you can offer the most relevant payment options at every price point – from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!','{}','unactioned','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(34,'setup_task_second_survey_q2_2022','survey','en_US','We want to know what matters most to you','Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(35,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(36,'wc-admin-EU-consumer-protection','marketing','en_US','Important changes to EU consumer protection laws','New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.','{}','unactioned','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(37,'googlelistings_multicountrygtm_q22022','marketing','en_US','Expand your audience with Multi-Country Advertising','It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings &amp; Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.','{}','unactioned','woocommerce.com','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(38,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2022-05-17 04:21:21',NULL,0,'plain','',0,0,'info'),(39,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2022-05-17 04:21:23',NULL,0,'plain','',0,0,'info'),(40,'surface_cart_checkout','info','en_US','Introducing the Cart and Checkout blocks!','Increase your store\'s revenue with the conversion optimized Cart &amp; Checkout WooCommerce blocks available in the WooCommerce Blocks extension.','{}','unactioned','woo-gutenberg-products-block','2022-05-17 04:21:23',NULL,0,'plain','',0,0,'info'),(41,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2022-05-18 04:25:53',NULL,0,'plain','',0,0,'info'),(42,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week.<br><br>Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2022-05-18 04:25:53',NULL,0,'plain','',0,0,'info'),(43,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2022-05-18 04:25:53',NULL,0,'plain','',0,0,'info'),(44,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2022-05-19 10:00:04',NULL,0,'plain','',0,0,'info');
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_category_lookup`
--

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

--
-- Dumping data for table `wp_wc_category_lookup`
--

LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_category_lookup` VALUES (15,15),(38,38),(41,41),(42,42),(43,43),(43,48),(43,50),(44,44),(48,48),(49,49),(50,50);
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_customer_lookup`
--

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

--
-- Dumping data for table `wp_wc_customer_lookup`
--

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

--
-- Table structure for table `wp_wc_download_log`
--

DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`),
  CONSTRAINT `fk_wp_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_download_log`
--

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

--
-- Table structure for table `wp_wc_order_coupon_lookup`
--

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

--
-- Dumping data for table `wp_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wp_wc_order_product_lookup`
--

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

--
-- Dumping data for table `wp_wc_order_product_lookup`
--

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

--
-- Table structure for table `wp_wc_order_stats`
--

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

--
-- Dumping data for table `wp_wc_order_stats`
--

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

--
-- Table structure for table `wp_wc_order_tax_lookup`
--

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

--
-- Dumping data for table `wp_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wp_wc_product_attributes_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_attributes_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_attributes_lookup` (
  `product_id` bigint(20) NOT NULL,
  `product_or_parent_id` bigint(20) NOT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `term_id` bigint(20) NOT NULL,
  `is_variation_attribute` tinyint(1) NOT NULL,
  `in_stock` tinyint(1) NOT NULL,
  PRIMARY KEY (`product_or_parent_id`,`term_id`,`product_id`,`taxonomy`),
  KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_attributes_lookup`
--

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

--
-- Table structure for table `wp_wc_product_download_directories`
--

DROP TABLE IF EXISTS `wp_wc_product_download_directories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_download_directories` (
  `url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(256) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `enabled` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`url_id`),
  KEY `url` (`url`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_download_directories`
--

LOCK TABLES `wp_wc_product_download_directories` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_download_directories` DISABLE KEYS */;
INSERT INTO `wp_wc_product_download_directories` VALUES (1,'file:///home2/assarbbq/public_html/demoweblinks.in/dental/wp-content/uploads/woocommerce_uploads/',1),(2,'https://demoweblinks.in/dental/wp-content/uploads/woocommerce_uploads/',1);
/*!40000 ALTER TABLE `wp_wc_product_download_directories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_product_meta_lookup`
--

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

--
-- Dumping data for table `wp_wc_product_meta_lookup`
--

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

--
-- Table structure for table `wp_wc_rate_limits`
--

DROP TABLE IF EXISTS `wp_wc_rate_limits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_rate_limits` (
  `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `rate_limit_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `rate_limit_expiry` bigint(20) unsigned NOT NULL,
  `rate_limit_remaining` smallint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`rate_limit_id`),
  UNIQUE KEY `rate_limit_key` (`rate_limit_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_wc_rate_limits`
--

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

--
-- Table structure for table `wp_wc_reserved_stock`
--

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

--
-- Dumping data for table `wp_wc_reserved_stock`
--

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

--
-- Table structure for table `wp_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_tax_rate_classes` (
  `tax_rate_class_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 '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_tax_rate_classes`
--

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

--
-- Table structure for table `wp_wc_webhooks`
--

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

--
-- Dumping data for table `wp_wc_webhooks`
--

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

--
-- Table structure for table `wp_woocommerce_api_keys`
--

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

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

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

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

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

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_attribute_taxonomies` VALUES (1,'size','size','select','menu_order',0),(2,'color','color','select','menu_order',0);
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

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

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wp_woocommerce_log`
--

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

--
-- Dumping data for table `wp_woocommerce_log`
--

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

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wp_woocommerce_order_items`
--

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

--
-- Dumping data for table `wp_woocommerce_order_items`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

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

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wp_woocommerce_sessions`
--

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

--
-- Dumping data for table `wp_woocommerce_sessions`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

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

--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

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

--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

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

--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

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

--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

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

--
-- Dumping data for table `wp_woocommerce_tax_rates`
--

LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2022-05-20  7:49:19
